1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/nrf52/Kconfig
Benjamin Valentin c78ee2bf64 cpu/nrf52: provide radio_nrf802154 at CPU level
The presence of the 802.15.4 radio peripheral is a feature of the CPU,
not the board.
Move it to the right place and reduce code duplication.
2020-10-02 10:44:59 +02:00

82 lines
2.0 KiB
Plaintext

# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
config CPU_FAM_NRF52
bool
select CPU_COMMON_NRF5X
# The ADC does not depend on any board configuration, so always available
select HAS_PERIPH_ADC
# So far, NimBLE netif does not support nrf51 platforms, so we use a dedicated
# feature to mark this
select HAS_BLE_NIMBLE_NETIF
select HAS_CORTEXM_MPU
select HAS_CPU_NRF52
## CPU Models
config CPU_MODEL_NRF52805XXAA
bool
select CPU_CORE_CORTEX_M4
select CPU_FAM_NRF52
config CPU_MODEL_NRF52810XXAA
bool
select CPU_CORE_CORTEX_M4
select CPU_FAM_NRF52
config CPU_MODEL_NRF52811XXAA
bool
select CPU_CORE_CORTEX_M4
select CPU_FAM_NRF52
select HAS_RADIO_NRF802154
config CPU_MODEL_NRF52820XXAA
bool
select CPU_CORE_CORTEX_M4
select CPU_FAM_NRF52
select HAS_RADIO_NRF802154
config CPU_MODEL_NRF52832XXAA
bool
select CPU_FAM_NRF52
select CPU_CORE_CORTEX_M4F
select HAS_BLE_NORDIC_SOFTDEVICE
config CPU_MODEL_NRF52833XXAA
bool
select CPU_CORE_CORTEX_M4F
select CPU_FAM_NRF52
select HAS_RADIO_NRF802154
config CPU_MODEL_NRF52840XXAA
bool
select CPU_CORE_CORTEX_M4F
select CPU_FAM_NRF52
select HAS_RADIO_NRF802154
## CPU common symbols
config CPU_FAM
default "nrf52" if CPU_FAM_NRF52
config CPU_MODEL
default "nrf52805xxaa" if CPU_MODEL_NRF52805XXAA
default "nrf52810xxaa" if CPU_MODEL_NRF52810XXAA
default "nrf52811xxaa" if CPU_MODEL_NRF52811XXAA
default "nrf52820xxaa" if CPU_MODEL_NRF52820XXAA
default "nrf52832xxaa" if CPU_MODEL_NRF52832XXAA
default "nrf52833xxaa" if CPU_MODEL_NRF52833XXAA
default "nrf52840xxaa" if CPU_MODEL_NRF52840XXAA
config CPU
default "nrf52" if CPU_FAM_NRF52
## Definition of specific features
config HAS_CPU_NRF52
bool
help
Indicates that the current cpu is 'nrf52'.
source "$(RIOTCPU)/nrf5x_common/Kconfig"