diff options
author | Ryan <fauxpark@gmail.com> | 2020-09-27 20:33:03 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 20:33:03 +1000 |
commit | 70fce6564fe691912387d09344efa1d1ce5b949e (patch) | |
tree | 42d9b87a3c1c2f22ca2722645c946a96bcad4795 /lib/python/qmk/constants.py | |
parent | 28ff51175b6d45ce5a8dbfe7ed6e7a12df3bc8a8 (diff) | |
download | qmk_firmware-70fce6564fe691912387d09344efa1d1ce5b949e.tar.gz qmk_firmware-70fce6564fe691912387d09344efa1d1ce5b949e.zip |
Add logic for AT90USBxx7 where needed (#10203)
Diffstat (limited to 'lib/python/qmk/constants.py')
-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 0a4708e4ce..0450724df4 100644 --- a/lib/python/qmk/constants.py +++ b/lib/python/qmk/constants.py @@ -10,6 +10,6 @@ MAX_KEYBOARD_SUBFOLDERS = 5 # Supported processor types ARM_PROCESSORS = 'cortex-m0', 'cortex-m0plus', 'cortex-m3', 'cortex-m4', 'MKL26Z64', 'MK20DX128', 'MK20DX256', 'STM32F042', 'STM32F072', 'STM32F103', 'STM32F303', 'STM32F401', 'STM32F411' -AVR_PROCESSORS = 'at90usb1286', 'at90usb646', 'atmega16u2', 'atmega328p', 'atmega32a', 'atmega32u2', 'atmega32u4', None +AVR_PROCESSORS = 'atmega16u2', 'atmega32u2', 'atmega16u4', 'atmega32u4', 'at90usb646', 'at90usb647', 'at90usb1286', 'at90usb1287', 'atmega328p', 'atmega32a', None ALL_PROCESSORS = ARM_PROCESSORS + AVR_PROCESSORS VUSB_PROCESSORS = 'atmega328p', 'atmega32a', 'atmega328', 'attiny85' |