1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 04:52:59 +01:00

boards/nrf52840dongle: Add spi feature and default pins

The chip supports spi on most pins. The default pins are in a bit
of a wierd location, but accessible.
This commit is contained in:
Tim Broenink 2021-02-22 15:39:52 +00:00
parent 24185611d1
commit d998d45489
3 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,7 @@ config BOARD_NRF52840DONGLE
select CPU_MODEL_NRF52840XXAA
select HAS_PERIPH_PWM
select HAS_PERIPH_UART
select HAS_PERIPH_SPI
select HAS_PERIPH_USBDEV
select HAS_HIGHLEVEL_STDIO
select HAS_VDD_LC_FILTER_REG0

View File

@ -4,6 +4,7 @@ CPU_MODEL = nrf52840xxaa
FEATURES_PROVIDED += periph_pwm
FEATURES_PROVIDED += periph_uart
FEATURES_PROVIDED += periph_usbdev
FEATURES_PROVIDED += periph_spi
FEATURES_PROVIDED += vdd_lc_filter_reg0
FEATURES_PROVIDED += vdd_lc_filter_reg1

View File

@ -24,6 +24,7 @@
#include "cfg_clock_32_1.h"
#include "cfg_rtt_default.h"
#include "cfg_timer_default.h"
#include "cfg_spi_default.h"
#ifdef __cplusplus
extern "C" {