1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-16 01:53:51 +01:00

feather-nrf52840: Adapt SPI periph config

This commit is contained in:
Koen Zandberg 2020-05-11 21:08:04 +02:00
parent 1e15bb2680
commit f42a796c02
No known key found for this signature in database
GPG Key ID: 0895A893E6D2985B

View File

@ -58,10 +58,10 @@ static const uart_conf_t uart_config[] = {
*/ */
static const spi_conf_t spi_config[] = { static const spi_conf_t spi_config[] = {
{ {
.dev = NRF_SPI0, .dev = NRF_SPIM0,
.sclk = 14, .sclk = 14,
.mosi = 13, .mosi = 13,
.miso = 15 .miso = 15,
} }
}; };