diff options
author | Conor Burns <mail@conor-burns.com> | 2022-10-05 03:37:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 18:37:28 -0700 |
commit | fe7ac87f1801faf7ae5127c480ca292d05fdc542 (patch) | |
tree | ed7dfbf8649e563697c2bfad310dad9bab15b6ee /docs | |
parent | 8b824a802929b40de075c24d21fae3d447506c56 (diff) |
[Docs] Clarify how to use the bootloader LED for rp2040 (#18585)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/platformdev_rp2040.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/platformdev_rp2040.md b/docs/platformdev_rp2040.md index d690ebebf8..f6db70701c 100644 --- a/docs/platformdev_rp2040.md +++ b/docs/platformdev_rp2040.md @@ -58,7 +58,7 @@ The double-tap reset mechanism is an alternate way in QMK to enter the embedded ```c #define RP2040_BOOTLOADER_DOUBLE_TAP_RESET // Activates the double-tap behavior #define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 200U // Timeout window in ms in which the double tap can occur. -#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED_MASK 0U // Specify a optional status led which blinks when entering the bootloader +#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17 // Specify a optional status led by GPIO number which blinks when entering the bootloader ``` ## Pre-defined RP2040 boards |