diff options
| author | Jack Sangdahl | 2025-07-13 17:59:59 +0200 |
|---|---|---|
| committer | GitHub | 2025-07-13 17:59:59 +0200 |
| commit | d67e94fb1b3f4e6d57b211983f8527571bdcb816 (patch) | |
| tree | aba3eef22a48a2ba6ee308b0021e469d8b23ddbc /platforms | |
| parent | f797d4f49d38d9538f6072048b1dfd2f981696f0 (diff) | |
Configure SPI for `STEMCELL` board (#25486)
Diffstat (limited to 'platforms')
| -rw-r--r-- | platforms/chibios/boards/STEMCELL/configs/config.h | 15 | ||||
| -rw-r--r-- | platforms/chibios/boards/STEMCELL/configs/mcuconf.h | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/platforms/chibios/boards/STEMCELL/configs/config.h b/platforms/chibios/boards/STEMCELL/configs/config.h index 82f6c63636..ab10432e4e 100644 --- a/platforms/chibios/boards/STEMCELL/configs/config.h +++ b/platforms/chibios/boards/STEMCELL/configs/config.h @@ -27,3 +27,18 @@ # define SERIAL_USART_DRIVER SD2 #endif +/**====================== + ** SPI Driver + *========================**/ +#ifndef SPI_DRIVER +# define SPI_DRIVER SPID1 +#endif +#ifndef SPI_SCK_PIN +# define SPI_SCK_PIN B1 +#endif +#ifndef SPI_MISO_PIN +# define SPI_MISO_PIN B3 +#endif +#ifndef SPI_MOSI_PIN +# define SPI_MOSI_PIN B2 +#endif diff --git a/platforms/chibios/boards/STEMCELL/configs/mcuconf.h b/platforms/chibios/boards/STEMCELL/configs/mcuconf.h index db239854aa..d4b870f8e4 100644 --- a/platforms/chibios/boards/STEMCELL/configs/mcuconf.h +++ b/platforms/chibios/boards/STEMCELL/configs/mcuconf.h @@ -196,7 +196,7 @@ /* * SPI driver system settings. */ -#define STM32_SPI_USE_SPI1 FALSE +#define STM32_SPI_USE_SPI1 TRUE #define STM32_SPI_USE_SPI2 FALSE #define STM32_SPI_USE_SPI3 FALSE #define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 0) |