The CIAA and QFAB variants of the nRF52832 were missing in Kconfig, although present in Device Tree. Add the relevant Kconfig entries in order to be able to select them. Fixes #12417 Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
20 lines
285 B
Text
20 lines
285 B
Text
# Kconfig.defconfig.nrf52832 - Nordic Semiconductor nRF52832 MCU
|
|
#
|
|
# Copyright (c) 2019 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
|
|
if SOC_NRF52832_QFAB
|
|
|
|
config SOC
|
|
string
|
|
default "nRF52832_QFAB"
|
|
|
|
config NUM_IRQS
|
|
int
|
|
default 39
|
|
|
|
endif # SOC_NRF52832_QFAB
|
|
|