diff options
author | BIGTREETECH <38851044+bigtreetech@users.noreply.github.com> | 2022-07-01 01:58:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 13:58:00 -0400 |
commit | 1636a9759bc2d5f162312ac8bf5823e95e0ad053 (patch) | |
tree | 5612ea4cfd8e61bf02ae817941c4c05b868e6c5e /scripts | |
parent | 167736ad1c127735806ba06858bc74c8ce6d49df (diff) | |
download | kutter-1636a9759bc2d5f162312ac8bf5823e95e0ad053.tar.gz kutter-1636a9759bc2d5f162312ac8bf5823e95e0ad053.tar.xz kutter-1636a9759bc2d5f162312ac8bf5823e95e0ad053.zip |
stm32: stm32g0/h7 usb_dfu_bootloader support (#5596)
Signed-off-by: Alan.Ma from BigTreeTech <tech@biqu3d.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/flash_usb.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/flash_usb.py b/scripts/flash_usb.py index 4004ad55..3d62a643 100755 --- a/scripts/flash_usb.py +++ b/scripts/flash_usb.py @@ -339,7 +339,8 @@ MCUTYPES = { 'sam3': flash_atsam3, 'sam4': flash_atsam4, 'samd': flash_atsamd, 'same70': flash_atsam4, 'lpc176': flash_lpc176x, 'stm32f103': flash_stm32f1, 'stm32f4': flash_stm32f4, 'stm32f042': flash_stm32f4, - 'stm32f072': flash_stm32f4, 'rp2040': flash_rp2040 + 'stm32f072': flash_stm32f4, 'stm32g0b1': flash_stm32f4, + 'stm32h7': flash_stm32f4, 'rp2040': flash_rp2040 } |