1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/common/nucleo64: fix doc

This commit is contained in:
Marian Buschsieweke 2023-11-15 09:57:42 +01:00
parent 08379cde27
commit 7446cf543a
No known key found for this signature in database
GPG Key ID: 77AA882EC78084E6

View File

@ -41,10 +41,13 @@ extern "C" {
* @name Arduino's SPI buses
* @{
*/
/**
* @brief SPI_DEV(1) is connected to D11/D12/D13
*/
#if !defined(ARDUINO_SPI_D11D12D13) && defined(SPI_NUMOF)
/**
* @brief SPI_DEV(0) is connected to D11/D12/D13 for most Nucleo-64 boards
*
* This can be overwritten in `boards/nucleo-<foobar>/include/periph_conf.h` by
* providing a custom `ARDUINO_SPI_D11D12D13`.
*/
#define ARDUINO_SPI_D11D12D13 SPI_DEV(0)
#endif
/** @} */