diff options
author | JamesH1978 <87171443+JamesH1978@users.noreply.github.com> | 2022-12-31 23:26:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-31 18:26:30 -0500 |
commit | 6ae6aaf71179ef1a57dde9c7d3b0b2efb3baf05d (patch) | |
tree | cf6ab82709496d7e3c782a886fc7225d3fb50223 | |
parent | f57ff2c07e25c3946e598dc2b3a5525c63a2c8e5 (diff) | |
download | kutter-6ae6aaf71179ef1a57dde9c7d3b0b2efb3baf05d.tar.gz kutter-6ae6aaf71179ef1a57dde9c7d3b0b2efb3baf05d.tar.xz kutter-6ae6aaf71179ef1a57dde9c7d3b0b2efb3baf05d.zip |
board_defs: Add Fysetc Cheetah V2 to spi_flash (#5952)
As discussed with user HiitsameAsh on discord, he has confirmed this addition will flash a Fysetc Cheetah V2
Signed-off-by: James Hartley <james@hartleyns.com>
-rw-r--r-- | scripts/spi_flash/board_defs.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/spi_flash/board_defs.py b/scripts/spi_flash/board_defs.py index 51ff276d..e136c7d9 100644 --- a/scripts/spi_flash/board_defs.py +++ b/scripts/spi_flash/board_defs.py @@ -110,6 +110,12 @@ BOARD_DEFS = { 'mcu': "stm32f405xx", 'spi_bus': "spi1", "cs_pin": "PA4" + }, + 'fysetc-cheetah': { + 'mcu': "stm32f401xc", + 'spi_bus': "spi1", + "cs_pin": "PA4", + "current_firmware_path": "OLD.BIN" } } @@ -151,6 +157,7 @@ BOARD_ALIASES = { 'btt-skr-pro-v1.2': BOARD_DEFS['btt-skr-pro'], 'btt-gtr-v1': BOARD_DEFS['btt-gtr'], 'mks-robin-e3d': BOARD_DEFS['mks-robin-e3'], + 'fysetc-cheetah-v2': BOARD_DEFS['fysetc-cheetah'], 'fysetc-spider-v1': BOARD_DEFS['fysetc-spider'], 'fysetc-s6-v1.2': BOARD_DEFS['fysetc-spider'], 'fysetc-s6-v2': BOARD_DEFS['fysetc-spider'], |