diff options
author | Joel Challis <git@zvecr.com> | 2022-08-19 01:48:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 01:48:33 +0100 |
commit | 9550cc464cd0579071cf490b6f3c9d151d336bd9 (patch) | |
tree | f81e41305a972e18ad25f2df7170f5a07c682aea | |
parent | 0fcebdcdf1b193268c0e8979faa583fa6253a29c (diff) | |
download | qmk_firmware-9550cc464cd0579071cf490b6f3c9d151d336bd9.tar.gz qmk_firmware-9550cc464cd0579071cf490b6f3c9d151d336bd9.zip |
Fix new-keyboard default for RP2040 bootloader (#18100)
-rw-r--r-- | lib/python/qmk/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/qmk/constants.py b/lib/python/qmk/constants.py index 5fe8326daf..7da9df1d8a 100644 --- a/lib/python/qmk/constants.py +++ b/lib/python/qmk/constants.py @@ -20,6 +20,7 @@ VUSB_PROCESSORS = 'atmega32a', 'atmega328p', 'atmega328', 'attiny85' # Bootloaders of the supported processors MCU2BOOTLOADER = { + "RP2040": "rp2040", "MKL26Z64": "halfkay", "MK20DX128": "halfkay", "MK20DX256": "halfkay", |