diff options
author | s6t <32667093+s6t@users.noreply.github.com> | 2022-07-21 03:57:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-20 21:57:08 -0400 |
commit | a151aa8c7a2baa971f4257e5add7a3e846e58857 (patch) | |
tree | 18be2da4b3824066838694fec668f29dc2c62f65 /scripts/spi_flash/board_defs.py | |
parent | e9c83d66e020fb14f6962a80cddd2d6bb5a67c70 (diff) | |
download | kutter-a151aa8c7a2baa971f4257e5add7a3e846e58857.tar.gz kutter-a151aa8c7a2baa971f4257e5add7a3e846e58857.tar.xz kutter-a151aa8c7a2baa971f4257e5add7a3e846e58857.zip |
spi_flash: Add board definition for Mellow FLY Gemini V2 (#5651)
Signed-off-by: Tobias Schröder <schroedt@live.de>
Diffstat (limited to 'scripts/spi_flash/board_defs.py')
-rw-r--r-- | scripts/spi_flash/board_defs.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/spi_flash/board_defs.py b/scripts/spi_flash/board_defs.py index 8ee48672..db78cfc0 100644 --- a/scripts/spi_flash/board_defs.py +++ b/scripts/spi_flash/board_defs.py @@ -70,6 +70,11 @@ BOARD_DEFS = { 'mcu': "stm32f407xx", 'spi_bus': "spi3a", "cs_pin": "PC9" + }, + 'fly-gemini-v2': { + 'mcu': "stm32f405xx", + 'spi_bus': "spi1", + "cs_pin": "PA4" } } |