1# Texas Instruments SimpleLink CC13x2 / CC26x2 2 3# Copyright (c) 2019 Brett Witherspoon 4# SPDX-License-Identifier: Apache-2.0 5 6config SOC_SERIES_CC13X2_CC26X2 7 bool 8 select SOC_FAMILY_TI_SIMPLELINK 9 help 10 Enable support for TI SimpleLink CC13x2 / CC26x2 SoCs 11 12config SOC_CC1352P 13 bool 14 select SOC_SERIES_CC13X2_CC26X2 15 help 16 CC1352P 17 18config SOC_CC1352R 19 bool 20 select SOC_SERIES_CC13X2_CC26X2 21 help 22 CC1352R 23 24config SOC_CC2652P 25 bool 26 select SOC_SERIES_CC13X2_CC26X2 27 help 28 CC2652P 29 30config SOC_CC2652R 31 bool 32 select SOC_SERIES_CC13X2_CC26X2 33 help 34 CC2652R 35 36config SOC_SERIES 37 default "cc13x2_cc26x2" if SOC_SERIES_CC13X2_CC26X2 38 39config SOC 40 default "cc1352p" if SOC_CC1352P 41 default "cc1352r" if SOC_CC1352R 42 default "cc2652p" if SOC_CC2652P 43 default "cc2652r" if SOC_CC2652R 44