Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scripts: Support both H743 and H723 BTT SKR3 boards sdflash #6301

Merged
merged 2 commits into from
Aug 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/Config_Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ All dates in this document are approximate.

## Changes

20230810: The flash-sdcard.sh script now supports both variants of the
Bigtreetech SKR-3, STM32H743 and STM32H723. For this, the original tag
of btt-skr-3 now has changed to be either btt-skr-3-h743 or btt-skr-3-h723.

20230729: The exported status for `dual_carriage` is changed. Instead of
exporting `mode` and `active_carriage`, the individual modes for each
carriage are exported as `printer.dual_carriage.carriage_0` and
Expand Down
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
Loading