1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 14:03:55 +01:00

Merge pull request #20085 from maribu/boards/nucleo-wl55jc

boards/nucleo-wl55jc: Fix Arduino SPI bus
This commit is contained in:
benpicco 2023-11-14 16:15:22 +00:00 committed by GitHub
commit b16c85c5a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,7 +117,12 @@ static const spi_conf_t spi_config[] = {
#endif
};
#define SPI_NUMOF ARRAY_SIZE(spi_config)
#define SPI_NUMOF ARRAY_SIZE(spi_config)
/**
* @brief Provide ARDUINO_SPI_D11D12D13 explicitly, as the first SPI
* interface is connected to the radio.
*/
#define ARDUINO_SPI_D11D12D13 SPI_DEV(1)
/** @} */
/**