diff options
author | Donna Whisnant <dewhisna@users.noreply.github.com> | 2023-07-24 19:07:11 -0500 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2023-08-11 20:00:36 -0400 |
commit | 20d87c73fe8750118741b8fc9f057c5861ee5df0 (patch) | |
tree | 18f1c9ae897da054b6cbc5b19ed1454a1ad9debe /scripts/spi_flash/board_defs.py | |
parent | ed66982b8eb06ce8843d8b5163c6bd290e1754c9 (diff) | |
download | kutter-20d87c73fe8750118741b8fc9f057c5861ee5df0.tar.gz kutter-20d87c73fe8750118741b8fc9f057c5861ee5df0.tar.xz kutter-20d87c73fe8750118741b8fc9f057c5861ee5df0.zip |
scripts: Support both H743 and H723 BTT SKR3 boards sdflash
Signed-off-by: Donna Whisnant <dewhisna@dewtronics.com>
Diffstat (limited to 'scripts/spi_flash/board_defs.py')
-rw-r--r-- | scripts/spi_flash/board_defs.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/spi_flash/board_defs.py b/scripts/spi_flash/board_defs.py index fe2e8c06..7dc44afc 100644 --- a/scripts/spi_flash/board_defs.py +++ b/scripts/spi_flash/board_defs.py @@ -87,13 +87,20 @@ BOARD_DEFS = { 'spi_bus': 'spi3a', 'cs_pin': 'PA15' }, - 'btt-skr-3': { + 'btt-skr-3-h743': { 'mcu': 'stm32h743xx', 'spi_bus': 'swspi', 'spi_pins': "PC8,PD2,PC12", 'cs_pin': 'PC11', 'skip_verify': True }, + 'btt-skr-3-h723': { + 'mcu': 'stm32h723xx', + 'spi_bus': 'swspi', + 'spi_pins': "PC8,PD2,PC12", + 'cs_pin': 'PC11', + 'skip_verify': True + }, 'creality-v4.2.2': { 'mcu': "stm32f103xe", 'spi_bus': "swspi", |