diff options
author | Nick Brassel <nick@tzarc.org> | 2021-06-30 10:07:40 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-30 10:07:40 +1000 |
commit | 8bb231aa1c40a7c6b6fdd229e88ef79c3fa930e2 (patch) | |
tree | c862a6538987482a79ccef3a2296d3250006e847 /lib/python | |
parent | 85965043613a0674b782cefd1ed9ccc6b9cc90a8 (diff) | |
download | qmk_firmware-8bb231aa1c40a7c6b6fdd229e88ef79c3fa930e2.tar.gz qmk_firmware-8bb231aa1c40a7c6b6fdd229e88ef79c3fa930e2.zip |
Adds support for STM32L412xB, STM32L422xB. (#13383)
* Adds support for STM32L412xB, STM32L422xB.
* Add to list of supported MCUs.
* Disable SPI1 by default.
Diffstat (limited to 'lib/python')
-rw-r--r-- | lib/python/qmk/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/constants.py b/lib/python/qmk/constants.py index 49e5e0eb42..be5ce5d4ed 100644 --- a/lib/python/qmk/constants.py +++ b/lib/python/qmk/constants.py @@ -10,7 +10,7 @@ QMK_FIRMWARE = Path.cwd() MAX_KEYBOARD_SUBFOLDERS = 5 # Supported processor types -CHIBIOS_PROCESSORS = 'cortex-m0', 'cortex-m0plus', 'cortex-m3', 'cortex-m4', 'MKL26Z64', 'MK20DX128', 'MK20DX256', 'MK66F18', 'STM32F042', 'STM32F072', 'STM32F103', 'STM32F303', 'STM32F401', 'STM32F411', 'STM32F446', 'STM32G431', 'STM32G474', 'STM32L433', 'STM32L443' +CHIBIOS_PROCESSORS = 'cortex-m0', 'cortex-m0plus', 'cortex-m3', 'cortex-m4', 'MKL26Z64', 'MK20DX128', 'MK20DX256', 'MK66F18', 'STM32F042', 'STM32F072', 'STM32F103', 'STM32F303', 'STM32F401', 'STM32F411', 'STM32F446', 'STM32G431', 'STM32G474', 'STM32L412', 'STM32L422', 'STM32L433', 'STM32L443' LUFA_PROCESSORS = 'at90usb162', 'atmega16u2', 'atmega32u2', 'atmega16u4', 'atmega32u4', 'at90usb646', 'at90usb647', 'at90usb1286', 'at90usb1287', None VUSB_PROCESSORS = 'atmega32a', 'atmega328p', 'atmega328', 'attiny85' |