mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
27 lines
570 B
Plaintext
27 lines
570 B
Plaintext
# Copyright (C) 2021 Otto-von-Guericke-Universität Magdeburg
|
|
#
|
|
# 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_FAM_RPX0XX
|
|
bool
|
|
select CPU_CORE_CORTEX_M0PLUS
|
|
|
|
config CPU_FAM
|
|
default "RPX0XX" if CPU_FAM_RPX0XX
|
|
|
|
config CPU_MODEL_RP2040
|
|
bool
|
|
select CPU_FAM_RPX0XX
|
|
|
|
config CPU_MODEL
|
|
default "RP2040" if CPU_MODEL_RP2040
|
|
|
|
config CPU
|
|
default "rpx0xx" if CPU_FAM_RPX0XX
|
|
|
|
|
|
source "$(RIOTCPU)/cortexm_common/Kconfig"
|