forked from RIOT-OS/RIOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
39 lines (31 loc) · 847 Bytes
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright (c) 2020 Locha Inc
#
# 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_CC13X2
bool
select CPU_COMMON_CC26XX_CC13XX
select CPU_FAM_CC13XX
select CPU_CORE_CORTEX_M4F
## CPU Models
config CPU_MODEL_CC1312R1F3
bool
select CPU_FAM_CC13X2
config CPU_MODEL_CC1352R1
bool
select CPU_FAM_CC13X2
config CPU_MODEL_CC1352P1
bool
select CPU_FAM_CC13X2
## Common CPU symbols
config CPU_FAM
default "cc13x2" if CPU_FAM_CC13X2
config CPU_MODEL
default "cc1312r1f3" if CPU_MODEL_CC1312R1F3
default "cc1352r1" if CPU_MODEL_CC1352R1
default "cc1352p1" if CPU_MODEL_CC1352P1
config CPU
default "cc26x2_cc13x2"
source "$(RIOTCPU)/cc26xx_cc13xx/Kconfig"