From f42a796c02f45d361af4c14dcd96cb47c7ef0a23 Mon Sep 17 00:00:00 2001 From: Koen Zandberg Date: Mon, 11 May 2020 21:08:04 +0200 Subject: [PATCH] feather-nrf52840: Adapt SPI periph config --- boards/feather-nrf52840/include/periph_conf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boards/feather-nrf52840/include/periph_conf.h b/boards/feather-nrf52840/include/periph_conf.h index 331611afcf..b124cd8145 100644 --- a/boards/feather-nrf52840/include/periph_conf.h +++ b/boards/feather-nrf52840/include/periph_conf.h @@ -58,10 +58,10 @@ static const uart_conf_t uart_config[] = { */ static const spi_conf_t spi_config[] = { { - .dev = NRF_SPI0, + .dev = NRF_SPIM0, .sclk = 14, .mosi = 13, - .miso = 15 + .miso = 15, } };