22 lines
372 B
Plaintext
22 lines
372 B
Plaintext
|
# Kconfig - EFM32WG series configuration options
|
||
|
|
||
|
#
|
||
|
# Copyright (c) 2018 Diego Sueiro
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
#
|
||
|
|
||
|
if SOC_SERIES_EFR32MG12P
|
||
|
|
||
|
config SOC_SERIES
|
||
|
default "efr32mg12p"
|
||
|
|
||
|
config NUM_IRQS
|
||
|
int
|
||
|
# must be >= the highest interrupt number used
|
||
|
default 49
|
||
|
|
||
|
gsource "soc/arm/silabs_exx32/efr32mg12p/Kconfig.defconfig.e*"
|
||
|
|
||
|
endif # SOC_SERIES_EFR32MG12P
|