diff --git a/boards/airfy-beacon/Makefile.features b/boards/airfy-beacon/Makefile.features index 1efe1209a667bd94d98252751b556b57f7f615f1..d6d2507b21a626cf4b46909a0901fd659991c870 100644 --- a/boards/airfy-beacon/Makefile.features +++ b/boards/airfy-beacon/Makefile.features @@ -8,7 +8,6 @@ FEATURES_PROVIDED += periph_timer FEATURES_PROVIDED += periph_uart # Various other features (if any) -FEATURES_PROVIDED += radio_nrfmin # The board MPU family (used for grouping by the CI system) FEATURES_MCU_GROUP = cortex_m0_2 diff --git a/boards/airfy-beacon/include/periph_conf.h b/boards/airfy-beacon/include/periph_conf.h index 620d15760cae7f0dc2203f5f7a83f540cb3da041..f2bbd5ea474d0cd4f57fcfad270a072d0c2d7fa7 100644 --- a/boards/airfy-beacon/include/periph_conf.h +++ b/boards/airfy-beacon/include/periph_conf.h @@ -124,16 +124,6 @@ static const i2c_conf_t i2c_config[] = { #define ADC_NUMOF (4) /** @} */ -/** - * @name Radio device configuration - * - * The radio is not guarded by a NUMOF define, as the radio is selected by its - * own module in the build system. - * @{ - */ -#define RADIO_IRQ_PRIO 1 -/** @} */ - #ifdef __cplusplus } /* end extern "C" */ #endif diff --git a/boards/calliope-mini/Makefile.features b/boards/calliope-mini/Makefile.features index eb4cb8ead4b9d0417dad1873fdb93d6c12b5fdbd..e6225db18bf7831566ba950f34c0b4c38cb04ef7 100644 --- a/boards/calliope-mini/Makefile.features +++ b/boards/calliope-mini/Makefile.features @@ -7,7 +7,6 @@ FEATURES_PROVIDED += periph_uart FEATURES_PROVIDED += periph_pwm # Various other features (if any) -FEATURES_PROVIDED += radio_nrfmin # The board MPU family (used for grouping by the CI system) FEATURES_MCU_GROUP = cortex_m0_1 diff --git a/boards/calliope-mini/include/periph_conf.h b/boards/calliope-mini/include/periph_conf.h index e3a033b8263ac0aa5a4b13330061465157b4d399..9b928bae9885b040532262ce282167b5986f27c2 100644 --- a/boards/calliope-mini/include/periph_conf.h +++ b/boards/calliope-mini/include/periph_conf.h @@ -112,16 +112,6 @@ static const i2c_conf_t i2c_config[] = { #define ADC_NUMOF (0) /** @} */ -/** - * @name Radio device configuration - * - * The radio is not guarded by a NUMOF define, as the radio is selected by its - * own module in the build system. - * @{ - */ -#define RADIO_IRQ_PRIO 1 -/** @} */ - /** * @name PWM configuration * @{ diff --git a/boards/common/nrf52xxxdk/Makefile.features b/boards/common/nrf52xxxdk/Makefile.features index 1783223faf9024647f0aa517abf18fe9b223021e..abb8c9dedf950a88f452bd8fb58032b34454071f 100644 --- a/boards/common/nrf52xxxdk/Makefile.features +++ b/boards/common/nrf52xxxdk/Makefile.features @@ -9,7 +9,6 @@ FEATURES_PROVIDED += periph_uart # Various other features (if any) FEATURES_PROVIDED += radio_ble FEATURES_PROVIDED += radio_nrfble -FEATURES_PROVIDED += radio_nrfmin # The board MPU family (used for grouping by the CI system) FEATURES_MCU_GROUP = cortex_m4_3 diff --git a/boards/microbit/Makefile.features b/boards/microbit/Makefile.features index 9a75beba6894dc8fe69f17923746ee7fee2d1b5b..482395865e2d4c7a77c2832f0e9af0bded8c1576 100644 --- a/boards/microbit/Makefile.features +++ b/boards/microbit/Makefile.features @@ -6,7 +6,6 @@ FEATURES_PROVIDED += periph_timer FEATURES_PROVIDED += periph_uart # Various other features (if any) -FEATURES_PROVIDED += radio_nrfmin # The board MPU family (used for grouping by the CI system) FEATURES_MCU_GROUP = cortex_m0_1 diff --git a/boards/microbit/include/periph_conf.h b/boards/microbit/include/periph_conf.h index ed0ccd042589212d894de2fd501f1f079e9a9949..7c6f050d783db5904ea8080a8f5ae6207a2019af 100644 --- a/boards/microbit/include/periph_conf.h +++ b/boards/microbit/include/periph_conf.h @@ -118,16 +118,6 @@ static const i2c_conf_t i2c_config[] = { #define ADC_NUMOF (0) /** @} */ -/** - * @name Radio device configuration - * - * The radio is not guarded by a NUMOF define, as the radio is selected by its - * own module in the build system. - * @{ - */ -#define RADIO_IRQ_PRIO 1 -/** @} */ - #ifdef __cplusplus } #endif diff --git a/boards/nrf51dongle/Makefile.features b/boards/nrf51dongle/Makefile.features index f1d5f75ec783a7a1f4ae3830d540310a249090bc..2ab6421bac62419021e3114a3f23f4961d9e7066 100644 --- a/boards/nrf51dongle/Makefile.features +++ b/boards/nrf51dongle/Makefile.features @@ -5,7 +5,6 @@ FEATURES_PROVIDED += periph_timer FEATURES_PROVIDED += periph_uart # Various other features (if any) -FEATURES_PROVIDED += radio_nrfmin # The board MPU family (used for grouping by the CI system) FEATURES_MCU_GROUP = cortex_m0_1 diff --git a/boards/nrf51dongle/include/periph_conf.h b/boards/nrf51dongle/include/periph_conf.h index cfa34d41bc085637c4d8ab7ac19aca8b221400da..3fda308cff902174ad9ca35da80a04ab971ae190 100644 --- a/boards/nrf51dongle/include/periph_conf.h +++ b/boards/nrf51dongle/include/periph_conf.h @@ -86,16 +86,6 @@ static const timer_conf_t timer_config[] = { #define ADC_NUMOF (0) /** @} */ -/** - * @name Radio device configuration - * - * The radio is not guarded by a NUMOF define, as the radio is selected by its - * own module in the build system. - * @{ - */ -#define RADIO_IRQ_PRIO 1 -/** @} */ - #ifdef __cplusplus } #endif diff --git a/boards/nrf6310/Makefile.features b/boards/nrf6310/Makefile.features index 327dc364f8afca882185be72dc83c678859cc260..81e4f4a5a0af9fa26158c90aab07d3f62514fe0f 100644 --- a/boards/nrf6310/Makefile.features +++ b/boards/nrf6310/Makefile.features @@ -6,7 +6,6 @@ FEATURES_PROVIDED += periph_timer FEATURES_PROVIDED += periph_uart # Various other features (if any) -FEATURES_PROVIDED += radio_nrfmin # The board MPU family (used for grouping by the CI system) FEATURES_MCU_GROUP = cortex_m0_2 diff --git a/boards/nrf6310/include/periph_conf.h b/boards/nrf6310/include/periph_conf.h index 67d63b06a7835d1b17f6f0407bf78d0030320ce2..d1afa91ae3d33d267966a5d635e524f7707e4c0a 100644 --- a/boards/nrf6310/include/periph_conf.h +++ b/boards/nrf6310/include/periph_conf.h @@ -83,16 +83,6 @@ static const timer_conf_t timer_config[] = { #define UART_PIN_CTS 18 /** @} */ -/** - * @name Radio device configuration - * - * The radio is not guarded by a NUMOF define, as the radio is selected by its - * own module in the build system. - * @{ - */ -#define RADIO_IRQ_PRIO 1 -/** @} */ - /** * @name SPI configuration * @{ diff --git a/boards/ruuvitag/Makefile.features b/boards/ruuvitag/Makefile.features index 5c594d4b0d28674f1c3095de7147c70c20262bb2..74d375b6e28dc834cf7b08b33e7e0f0bd3e21ba6 100644 --- a/boards/ruuvitag/Makefile.features +++ b/boards/ruuvitag/Makefile.features @@ -6,7 +6,6 @@ FEATURES_PROVIDED += periph_timer FEATURES_PROVIDED += periph_uart # Various other features (if any) -FEATURES_PROVIDED += radio_nrfmin # The board MPU family (used for grouping by the CI system) FEATURES_MCU_GROUP = cortex_m4_3 diff --git a/boards/thingy52/Makefile.features b/boards/thingy52/Makefile.features index 1830ca678407869bfa75a30cb723d1009ec7b89c..76c1d4158fae5259512a6fffb917d46fb51dbfb4 100644 --- a/boards/thingy52/Makefile.features +++ b/boards/thingy52/Makefile.features @@ -5,7 +5,6 @@ FEATURES_PROVIDED += periph_timer FEATURES_PROVIDED += periph_uart # Various other features (if any) -FEATURES_PROVIDED += radio_nrfmin # The board MPU family (used for grouping by the CI system) FEATURES_MCU_GROUP = cortex_m4_3 diff --git a/boards/yunjia-nrf51822/Makefile.features b/boards/yunjia-nrf51822/Makefile.features index 1efe1209a667bd94d98252751b556b57f7f615f1..d6d2507b21a626cf4b46909a0901fd659991c870 100644 --- a/boards/yunjia-nrf51822/Makefile.features +++ b/boards/yunjia-nrf51822/Makefile.features @@ -8,7 +8,6 @@ FEATURES_PROVIDED += periph_timer FEATURES_PROVIDED += periph_uart # Various other features (if any) -FEATURES_PROVIDED += radio_nrfmin # The board MPU family (used for grouping by the CI system) FEATURES_MCU_GROUP = cortex_m0_2 diff --git a/boards/yunjia-nrf51822/include/periph_conf.h b/boards/yunjia-nrf51822/include/periph_conf.h index 50992a1065033f19aa6138865243f9717e3a04bb..71d01be9b457f46c98610a972722a355eca23e57 100644 --- a/boards/yunjia-nrf51822/include/periph_conf.h +++ b/boards/yunjia-nrf51822/include/periph_conf.h @@ -122,16 +122,6 @@ static const i2c_conf_t i2c_config[] = { #define ADC_NUMOF (4) /** @} */ -/** - * @name Radio device configuration - * - * The radio is not guarded by a NUMOF define, as the radio is selected by its - * own module in the build system. - * @{ - */ -#define RADIO_IRQ_PRIO 1 -/** @} */ - #ifdef __cplusplus } #endif diff --git a/cpu/nrf5x_common/Makefile.features b/cpu/nrf5x_common/Makefile.features index a8f68ad748d134e6387f2d20cc09a582f85422eb..cdeacf03d7a337c365d770557aa9e7ff141e2fd0 100644 --- a/cpu/nrf5x_common/Makefile.features +++ b/cpu/nrf5x_common/Makefile.features @@ -1,5 +1,9 @@ +# Put defined MCU peripherals here (in alphabetical order) FEATURES_PROVIDED += periph_cpuid FEATURES_PROVIDED += periph_flashpage FEATURES_PROVIDED += periph_hwrng +# Various other features (if any) +FEATURES_PROVIDED += radio_nrfmin + -include $(RIOTCPU)/cortexm_common/Makefile.features