2020-07-03 10:47:11 +02:00
|
|
|
# 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_COMMON_NRF5X
|
|
|
|
bool
|
|
|
|
select HAS_PERIPH_CPUID
|
|
|
|
select HAS_PERIPH_FLASHPAGE
|
2020-11-09 16:44:21 +01:00
|
|
|
select HAS_PERIPH_FLASHPAGE_PAGEWISE
|
2020-07-03 10:47:11 +02:00
|
|
|
select HAS_PERIPH_GPIO
|
|
|
|
select HAS_PERIPH_GPIO_IRQ
|
|
|
|
select HAS_PERIPH_HWRNG
|
|
|
|
select HAS_PERIPH_TEMPERATURE
|
2020-11-30 17:26:02 +01:00
|
|
|
select HAS_PERIPH_TIMER_PERIODIC
|
2020-07-03 10:47:11 +02:00
|
|
|
select HAS_PERIPH_UART_MODECFG
|
|
|
|
select HAS_PERIPH_WDT
|
|
|
|
select HAS_PERIPH_WDT_CB
|
|
|
|
select HAS_BLE_NIMBLE
|
|
|
|
select HAS_RADIO_NRFBLE
|
|
|
|
select HAS_RADIO_NRFMIN
|
|
|
|
|
|
|
|
## Definition of specific features
|
|
|
|
config HAS_BLE_NIMBLE
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Indicates that the NimBLE stack is supported on the current platform.
|
|
|
|
|
|
|
|
config HAS_BLE_NIMBLE_NETIF
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Indicates that NimBLE netif is supported on the current platform.
|
|
|
|
|
|
|
|
config HAS_RADIO_NRFBLE
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Indicates that a BLE-compatible nRF radio is present.
|
|
|
|
|
|
|
|
config HAS_RADIO_NRFMIN
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Indicates that a radio compatible with the nRF minimal radio driver is
|
|
|
|
present.
|
|
|
|
|
2021-02-18 15:26:44 +01:00
|
|
|
config HAS_VDD_LC_FILTER_REG0
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Indicates that a board is equipped with an external LC filter circuit
|
|
|
|
attached to the CPUs voltage regulator stage 0.
|
|
|
|
|
|
|
|
config HAS_VDD_LC_FILTER_REG1
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Indicates that a board is equipped with an external LC filter circuit
|
|
|
|
attached to the CPUs voltage regulator stage 1.
|
|
|
|
|
2020-07-03 10:47:11 +02:00
|
|
|
source "$(RIOTCPU)/cortexm_common/Kconfig"
|