mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
30 lines
685 B
Plaintext
30 lines
685 B
Plaintext
# Copyright (c) 2023 Mesotic SAS
|
|
#
|
|
# 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.
|
|
|
|
# For now, define all features here
|
|
# We will rely on nrf5x_common later when we support more peripherals
|
|
config CPU_FAM_NRF53
|
|
bool
|
|
|
|
## CPU Models
|
|
config CPU_MODEL_NRF5340_APP
|
|
bool
|
|
select CPU_CORE_CORTEX_M33
|
|
select CPU_FAM_NRF53
|
|
|
|
## CPU common symbols
|
|
config CPU_FAM
|
|
default "nrf53" if CPU_FAM_NRF53
|
|
|
|
config CPU_MODEL
|
|
default "nrf5340_app" if CPU_MODEL_NRF5340_APP
|
|
|
|
|
|
config CPU
|
|
default "nrf53" if CPU_FAM_NRF53
|
|
|
|
source "$(RIOTCPU)/nrf5x_common/Kconfig"
|