2020-06-05 05:18:44 +02:00
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2020-06-16 14:23:17 +02:00
|
|
|
config CPU_FAM_CC26X0
|
2020-06-05 05:18:44 +02:00
|
|
|
bool
|
|
|
|
select CPU_CORE_CORTEX_M3
|
|
|
|
select CPU_COMMON_CC26XX_CC13XX
|
2021-11-19 10:52:08 +01:00
|
|
|
|
2021-02-08 13:31:11 +01:00
|
|
|
config CPU_FAM_CC13X0
|
|
|
|
bool
|
|
|
|
select CPU_CORE_CORTEX_M3
|
|
|
|
select CPU_COMMON_CC26XX_CC13XX
|
2021-11-19 10:52:08 +01:00
|
|
|
|
2020-06-05 05:18:44 +02:00
|
|
|
## CPU Models
|
|
|
|
config CPU_MODEL_CC26X0F128
|
|
|
|
bool
|
2020-06-16 14:23:17 +02:00
|
|
|
select CPU_FAM_CC26X0
|
2020-06-05 05:18:44 +02:00
|
|
|
|
2021-02-08 13:31:11 +01:00
|
|
|
config CPU_MODEL_CC13X0F128
|
|
|
|
bool
|
|
|
|
select CPU_FAM_CC13X0
|
|
|
|
|
2020-06-05 05:18:44 +02:00
|
|
|
## Common CPU symbols
|
2020-06-16 14:23:17 +02:00
|
|
|
config CPU_FAM
|
|
|
|
default "cc26x0" if CPU_FAM_CC26X0
|
2021-02-08 13:31:11 +01:00
|
|
|
default "cc13x0" if CPU_FAM_CC13X0
|
2020-06-05 05:18:44 +02:00
|
|
|
|
|
|
|
config CPU_MODEL
|
|
|
|
default "cc26x0f128" if CPU_MODEL_CC26X0F128
|
2021-02-08 13:31:11 +01:00
|
|
|
default "cc13x0f128" if CPU_MODEL_CC13X0F128
|
2020-06-05 05:18:44 +02:00
|
|
|
|
2020-06-16 14:23:17 +02:00
|
|
|
config CPU
|
2021-02-08 13:31:11 +01:00
|
|
|
default "cc26x0_cc13x0"
|
2020-06-16 14:23:17 +02:00
|
|
|
|
2020-06-05 05:18:44 +02:00
|
|
|
source "$(RIOTCPU)/cc26xx_cc13xx/Kconfig"
|