diff options
author | Burrito <37681398+burritosoftware@users.noreply.github.com> | 2025-07-28 15:25:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-28 18:25:48 -0400 |
commit | e1176e4dfb9018e712d4fa86daf41e9e762a1698 (patch) | |
tree | e211723c3823f23e9dc71e619cf310f3099fc5ff | |
parent | 6773ab074b132d6dc417e91b379d5a7b8d986b8d (diff) | |
download | kutter-e1176e4dfb9018e712d4fa86daf41e9e762a1698.tar.gz kutter-e1176e4dfb9018e712d4fa86daf41e9e762a1698.tar.xz kutter-e1176e4dfb9018e712d4fa86daf41e9e762a1698.zip |
spi_flash: Add ZNP Robin Nano v2.2 to board defs (#6986)
Adds support for the ZNP Robin Nano DW v2.2 board, used in the Neptune 3
Pro/Plus/Max.
Signed-off-by: Zyjay Cruz <burrito@burrito.software>
-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 fe6ec9ab..44eefa4f 100644 --- a/scripts/spi_flash/board_defs.py +++ b/scripts/spi_flash/board_defs.py @@ -162,6 +162,13 @@ BOARD_DEFS = { "conversion_script": "scripts/update_chitu.py", "firmware_path": "update.cbd", 'skip_verify': True + }, + 'znp-robin-nano-dw-v2.2': { + 'mcu': "stm32f401xc", + 'spi_bus': "spi2", + "cs_pin": "PB12", + "firmware_path": "ZNP_ROBIN_NANO.bin", + "current_firmware_path": "ZNP_ROBIN_NANO.CUR" } } |