diff options
author | Dennis Kühn <45981602+ThaoDChan@users.noreply.github.com> | 2023-06-29 17:42:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 11:42:07 -0400 |
commit | a96608add40e316f25f15d9c9d1c1fbd86dbbebe (patch) | |
tree | 0618b5441d0df19181d846df0223d51acc337732 | |
parent | e62929fe2ff44bfed2ded09060cb41f35617070f (diff) | |
download | kutter-a96608add40e316f25f15d9c9d1c1fbd86dbbebe.tar.gz kutter-a96608add40e316f25f15d9c9d1c1fbd86dbbebe.tar.xz kutter-a96608add40e316f25f15d9c9d1c1fbd86dbbebe.zip |
spi_flash: New Board Definition for BTT SKRat V1.0 (#6249)
Adds the new BTT SKRat V1.0 controller board to the board_defs for the flash-sdcard.sh tool.
The new board definition was tested by me without any errors.
Signed-off-by: Dennis Kuehn <denniskuehn@online.de>
-rw-r--r-- | scripts/spi_flash/board_defs.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/spi_flash/board_defs.py b/scripts/spi_flash/board_defs.py index e95816af..fe2e8c06 100644 --- a/scripts/spi_flash/board_defs.py +++ b/scripts/spi_flash/board_defs.py @@ -116,6 +116,11 @@ BOARD_DEFS = { 'spi_bus': "spi1", "cs_pin": "PA4", "current_firmware_path": "OLD.BIN" + }, + 'btt-skrat': { + 'mcu': "stm32g0b1xx", + 'spi_bus': "spi1", + "cs_pin": "PB8" } } @@ -162,7 +167,8 @@ BOARD_ALIASES = { 'fysetc-spider-v1': BOARD_DEFS['fysetc-spider'], 'fysetc-s6-v1.2': BOARD_DEFS['fysetc-spider'], 'fysetc-s6-v2': BOARD_DEFS['fysetc-spider'], - 'robin_v3': BOARD_DEFS['monster8'] + 'robin_v3': BOARD_DEFS['monster8'], + 'btt-skrat-v1.0': BOARD_DEFS['btt-skrat'] } def list_boards(): |