aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-10-26 17:11:04 -0400
committerKevin O'Connor <kevin@koconnor.net>2019-10-26 17:11:04 -0400
commit5131ec5eb0ec4c6292ff57da2bfda0e522d67003 (patch)
tree03a0eb6ce1553ad1e3f335a30ad7746f196ffe1b /scripts
parent2ecc8d8f62b40c3b241d8091220fbe959d9b67ee (diff)
downloadkutter-5131ec5eb0ec4c6292ff57da2bfda0e522d67003.tar.gz
kutter-5131ec5eb0ec4c6292ff57da2bfda0e522d67003.tar.xz
kutter-5131ec5eb0ec4c6292ff57da2bfda0e522d67003.zip
stm32: Add support for flashing over usb on stm32f042
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/flash_usb.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/flash_usb.py b/scripts/flash_usb.py
index bb1afcce..a40708ba 100755
--- a/scripts/flash_usb.py
+++ b/scripts/flash_usb.py
@@ -211,7 +211,8 @@ def flash_stm32f4(options, binfile):
MCUTYPES = {
'atsam3': flash_atsam3, 'atsam4': flash_atsam4, 'atsamd': flash_atsamd,
- 'lpc176x': flash_lpc176x, 'stm32f1': flash_stm32f1, 'stm32f4': flash_stm32f4
+ 'lpc176x': flash_lpc176x, 'stm32f1': flash_stm32f1,
+ 'stm32f4': flash_stm32f4, 'stm32f0': flash_stm32f4,
}