diff options
author | Chris Lombardi <clearchris@hotmail.com> | 2023-08-11 16:58:57 -0500 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2023-08-13 14:14:55 -0400 |
commit | 07792a02b45460359faf48e8a47cea1e958a436c (patch) | |
tree | 4d42565b4d4c6b3ce7415bb63d685c4ab4934949 /scripts | |
parent | aa8ba30f8a8453c739a009870752fb645ed4c27b (diff) | |
download | kutter-07792a02b45460359faf48e8a47cea1e958a436c.tar.gz kutter-07792a02b45460359faf48e8a47cea1e958a436c.tar.xz kutter-07792a02b45460359faf48e8a47cea1e958a436c.zip |
scripts: Added stm32f070 to mcus supported by flash_usb.py
Verified with an Monoprice Mini Select v2 using katapult.
Signed-off-by: Chris Lombardi <clearchristx@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/flash_usb.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/flash_usb.py b/scripts/flash_usb.py index ed139dfe..33c43760 100755 --- a/scripts/flash_usb.py +++ b/scripts/flash_usb.py @@ -344,8 +344,8 @@ MCUTYPES = { 'samd': flash_atsamd, 'same5': flash_atsamd, 'lpc176': flash_lpc176x, 'stm32f103': flash_stm32f1, 'stm32f4': flash_stm32f4, 'stm32f042': flash_stm32f4, - 'stm32f072': flash_stm32f4, 'stm32g0b1': flash_stm32f4, - 'stm32f7': flash_stm32f4, + 'stm32f070': flash_stm32f4, 'stm32f072': flash_stm32f4, + 'stm32g0b1': flash_stm32f4, 'stm32f7': flash_stm32f4, 'stm32h7': flash_stm32f4, 'stm32l4': flash_stm32f4, 'stm32g4': flash_stm32f4, 'rp2040': flash_rp2040, } |