summaryrefslogtreecommitdiff
path: root/docs/platformdev_chibios_earlyinit.md
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2022-09-15 01:03:55 +0100
committerGitHub <noreply@github.com>2022-09-15 01:03:55 +0100
commit01f31bf28ebcb5721229697c93dc6e0b2d5b66d7 (patch)
treebf1a28b41008be13a52a4a871c34ce594916d791 /docs/platformdev_chibios_earlyinit.md
parent0abde386ae46600d0ac12b13a480c060e3292bd9 (diff)
[Docs] RESET -> QK_BOOT (#18365)
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 |
|-----------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|