25 lines
489 B
Plaintext
25 lines
489 B
Plaintext
# Kconfig - EFM32PG12B series configuration options
|
|
|
|
#
|
|
# Copyright (c) 2018 Christian Taedcke
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if SOC_SERIES_EFM32PG12B
|
|
|
|
config SOC_SERIES
|
|
default "efm32pg12b"
|
|
|
|
config SOC_PART_NUMBER
|
|
default "EFM32PG12B500F1024GL125" if SOC_PART_NUMBER_EFM32PG12B500F1024GL125
|
|
|
|
config NUM_IRQS
|
|
int
|
|
# must be >= the highest interrupt number used
|
|
default 50
|
|
|
|
source "soc/arm/silabs_exx32/efm32pg12b/Kconfig.defconfig.efm32pg12b"
|
|
|
|
endif # SOC_SERIES_EFM32PG12B
|