mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
33 lines
684 B
Plaintext
33 lines
684 B
Plaintext
# 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_FAM_LPC23XX
|
|
bool
|
|
select CPU_CORE_ARM7TDMI_S
|
|
|
|
## CPU Models
|
|
config CPU_MODEL_LPC2387
|
|
bool
|
|
select CPU_FAM_LPC23XX
|
|
|
|
config CPU_MODEL_LPC2388
|
|
bool
|
|
select CPU_FAM_LPC23XX
|
|
|
|
## Common CPU symbols
|
|
config CPU_FAM
|
|
default "lpc23xx" if CPU_FAM_LPC23XX
|
|
|
|
config CPU_MODEL
|
|
default "lpc2387" if CPU_MODEL_LPC2387
|
|
default "lpc2388" if CPU_MODEL_LPC2388
|
|
|
|
config CPU
|
|
default "lpc23xx" if CPU_FAM_LPC23XX
|
|
|
|
source "$(RIOTCPU)/arm7_common/Kconfig"
|