diff options
author | JamesH1978 <87171443+JamesH1978@users.noreply.github.com> | 2023-01-04 17:01:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 12:01:28 -0500 |
commit | 3cd8a72e60f8d42b7defe70248e5754c089a6be9 (patch) | |
tree | aaeff9b1652002f0d43964773fb3747404ef94c1 | |
parent | 448c1a1488d57b4587250355bb720859d1812a61 (diff) | |
download | kutter-3cd8a72e60f8d42b7defe70248e5754c089a6be9.tar.gz kutter-3cd8a72e60f8d42b7defe70248e5754c089a6be9.tar.xz kutter-3cd8a72e60f8d42b7defe70248e5754c089a6be9.zip |
spi_flash: Add SKR2 F429 chip variant to spi_flash (#5956)
Later addition of a F429 variant SKR2 was released. Changed btt-skr2 to btt-skr-2-f407 and added a new alias for btt-skr-2-f429
Signed-off-by: James Hartley <james@hartleyns.com>
-rw-r--r-- | docs/Config_Changes.md | 4 | ||||
-rw-r--r-- | scripts/spi_flash/board_defs.py | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/docs/Config_Changes.md b/docs/Config_Changes.md index 75b4d0b1..54af4b8b 100644 --- a/docs/Config_Changes.md +++ b/docs/Config_Changes.md @@ -7,6 +7,10 @@ document when upgrading the Klipper software. All dates in this document are approximate. ## Changes +20230103: It is now possible with the flash-sdcard.sh script to flash +both variants of the Bigtreetech SKR-2, STM32F407 and STM32F429. +This means that the original tag of btt-skr2 now has changed to either +btt-skr-2-f407 or btt-skr-2-f429. 20221122: Previously, with safe_z_home, it was possible that the z_hop after the g28 homing would go in the negative z direction. diff --git a/scripts/spi_flash/board_defs.py b/scripts/spi_flash/board_defs.py index e136c7d9..e95816af 100644 --- a/scripts/spi_flash/board_defs.py +++ b/scripts/spi_flash/board_defs.py @@ -144,7 +144,8 @@ BOARD_ALIASES = { 'btt-skr-e3-dip': BOARD_DEFS['btt-skr-mini'], 'btt002-v1': BOARD_DEFS['btt-skr-mini'], 'creality-v4.2.7': BOARD_DEFS['creality-v4.2.2'], - 'btt-skr-2': BOARD_DEFS['btt-octopus-f407-v1'], + 'btt-skr-2-f407': BOARD_DEFS['btt-octopus-f407-v1'], + 'btt-skr-2-f429': BOARD_DEFS['btt-octopus-f429-v1'], 'btt-octopus-f407-v1.0': BOARD_DEFS['btt-octopus-f407-v1'], 'btt-octopus-f407-v1.1': BOARD_DEFS['btt-octopus-f407-v1'], 'btt-octopus-f429-v1.0': BOARD_DEFS['btt-octopus-f429-v1'], |