22 lines
424 B
Plaintext
22 lines
424 B
Plaintext
# Kconfig - Nordic Semiconductor nRFx MCU line
|
|
#
|
|
# Copyright (c) 2016-2018 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
config SOC_FAMILY_NRF
|
|
select SOC_COMPATIBLE_NRF
|
|
bool
|
|
# omit prompt to signify a "hidden" option
|
|
|
|
if SOC_FAMILY_NRF
|
|
config SOC_FAMILY
|
|
string
|
|
default "nordic_nrf"
|
|
|
|
source "soc/arm/nordic_nrf/Kconfig.peripherals"
|
|
source "soc/arm/nordic_nrf/*/Kconfig.soc"
|
|
|
|
endif # SOC_FAMILY_NRF
|