Skip to content

Commit

Permalink
Merge pull request #20085 from maribu/boards/nucleo-wl55jc
Browse files Browse the repository at this point in the history
boards/nucleo-wl55jc: Fix Arduino SPI bus
  • Loading branch information
benpicco authored Nov 14, 2023
2 parents a24066b + c7ded84 commit b16c85c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion boards/nucleo-wl55jc/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
/** @} */

/**
Expand Down

0 comments on commit b16c85c

Please sign in to comment.