aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2022-09-29 12:37:29 -0400
committerKevin O'Connor <kevin@koconnor.net>2022-10-13 11:27:14 -0400
commitbdf79caac422b019f6e61e2787005c2359165499 (patch)
tree7fca816668b927914989fda40abaa5d59a51ef85 /scripts
parent69bd26b75718dbd18812dec3e4725fe467e43f46 (diff)
downloadkutter-bdf79caac422b019f6e61e2787005c2359165499.tar.gz
kutter-bdf79caac422b019f6e61e2787005c2359165499.tar.xz
kutter-bdf79caac422b019f6e61e2787005c2359165499.zip
atsamd: Add Kconfig definitions for same51j19 and same54p20 chips
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/flash_usb.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/flash_usb.py b/scripts/flash_usb.py
index bf820de3..85f264e9 100755
--- a/scripts/flash_usb.py
+++ b/scripts/flash_usb.py
@@ -336,12 +336,13 @@ def flash_rp2040(options, binfile):
sys.exit(-1)
MCUTYPES = {
- 'sam3': flash_atsam3, 'sam4': flash_atsam4, 'samd': flash_atsamd,
- 'same70': flash_atsam4, 'lpc176': flash_lpc176x, 'stm32f103': flash_stm32f1,
+ 'sam3': flash_atsam3, 'sam4': flash_atsam4, 'same70': flash_atsam4,
+ 'samd': flash_atsamd, 'same5': flash_atsamd,
+ 'lpc176': flash_lpc176x, 'stm32f103': flash_stm32f1,
'stm32f4': flash_stm32f4, 'stm32f042': flash_stm32f4,
'stm32f072': flash_stm32f4, 'stm32g0b1': flash_stm32f4,
- 'stm32h7': flash_stm32f4, 'rp2040': flash_rp2040,
- 'stm32l4': flash_stm32f4
+ 'stm32h7': flash_stm32f4, 'stm32l4': flash_stm32f4,
+ 'rp2040': flash_rp2040,
}