diff --git a/cpu/mips_pic32_common/Kconfig b/cpu/mips_pic32_common/Kconfig new file mode 100644 index 0000000000..48bcec35be --- /dev/null +++ b/cpu/mips_pic32_common/Kconfig @@ -0,0 +1,14 @@ +# 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_MIPS_PIC32 + bool + select HAS_PERIPH_CPUID + select HAS_PERIPH_GPIO + select HAS_PERIPH_GPIO_IRQ + +source "$(RIOTCPU)/mips32r2_common/Kconfig" diff --git a/cpu/mips_pic32_common/Makefile.features b/cpu/mips_pic32_common/Makefile.features index 95e072df63..327a6f0b93 100644 --- a/cpu/mips_pic32_common/Makefile.features +++ b/cpu/mips_pic32_common/Makefile.features @@ -1,4 +1,4 @@ FEATURES_PROVIDED += periph_cpuid FEATURES_PROVIDED += periph_gpio periph_gpio_irq --include $(RIOTCPU)/mips32r2_common/Makefile.features +include $(RIOTCPU)/mips32r2_common/Makefile.features