aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAlex Maclean <monkeh@monkeh.net>2021-08-18 20:01:59 +0100
committerKevin O'Connor <kevin@koconnor.net>2022-03-26 11:59:27 -0400
commit80492432210f1cf7817b7808245d196f3420021e (patch)
treea3c7f6222ce51c5a7f7ac2ab77dce1506a5ddfbf /scripts
parent99c2bf0dede623264777812fd324499325babc48 (diff)
downloadkutter-80492432210f1cf7817b7808245d196f3420021e.tar.gz
kutter-80492432210f1cf7817b7808245d196f3420021e.tar.xz
kutter-80492432210f1cf7817b7808245d196f3420021e.zip
atsam: Add support for SAM E70
Signed-off-by: Alex Maclean <monkeh@monkeh.net>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/flash_usb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/flash_usb.py b/scripts/flash_usb.py
index ca41293a..68e61570 100755
--- a/scripts/flash_usb.py
+++ b/scripts/flash_usb.py
@@ -286,7 +286,7 @@ def flash_rp2040(options, binfile):
MCUTYPES = {
'sam3': flash_atsam3, 'sam4': flash_atsam4, 'samd': flash_atsamd,
- 'lpc176': flash_lpc176x, 'stm32f103': flash_stm32f1,
+ 'same70': flash_atsam4, 'lpc176': flash_lpc176x, 'stm32f103': flash_stm32f1,
'stm32f4': flash_stm32f4, 'stm32f042': flash_stm32f4,
'stm32f072': flash_stm32f4, 'rp2040': flash_rp2040
}