Skip to content

Commit

Permalink
scripts: Support both H743 and H723 BTT SKR3 boards sdflash
Browse files Browse the repository at this point in the history
Signed-off-by: Donna Whisnant <[email protected]>
  • Loading branch information
dewhisna committed Aug 10, 2023
1 parent ed66982 commit 3e64f49
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion scripts/spi_flash/board_defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,20 @@
'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",
Expand Down

0 comments on commit 3e64f49

Please sign in to comment.