summaryrefslogtreecommitdiffstats
path: root/docs/platformdev_chibios_earlyinit.md
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2022-09-15 00:04:32 +0000
committerQMK Bot <hello@qmk.fm>2022-09-15 00:04:32 +0000
commit13dab7f05025ce4282ea2ea566d9e2e6c15b063f (patch)
tree1181a8db5ff66920414e8762156a34c5fdd4a431 /docs/platformdev_chibios_earlyinit.md
parent91a3ae24fe1932935b6d4282b71bbfd57d9408c8 (diff)
parent01f31bf28ebcb5721229697c93dc6e0b2d5b66d7 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/platformdev_chibios_earlyinit.md')
-rw-r--r--docs/platformdev_chibios_earlyinit.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/platformdev_chibios_earlyinit.md b/docs/platformdev_chibios_earlyinit.md
index e1256f2714..bc49247222 100644
--- a/docs/platformdev_chibios_earlyinit.md
+++ b/docs/platformdev_chibios_earlyinit.md
@@ -12,7 +12,7 @@ The function `early_hardware_init_pre` is the earliest possible code that can be
This is executed before RAM gets cleared, and before clocks or GPIOs are configured; for example, ChibiOS delays are not likely to work at this point. After executing this function, RAM on the MCU may be zero'ed. Assigning values to variables during execution of this function may be overwritten.
-As such, if you wish to override this API consider limiting use to writing to low-level registers. The default implementation of this function can be configured to jump to bootloader if a `RESET` key was pressed:
+As such, if you wish to override this API consider limiting use to writing to low-level registers. The default implementation of this function can be configured to jump to bootloader if a `QK_BOOT` key was pressed:
| `config.h` override | Description | Default |
|-----------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|