1# Texas Instruments SimpleLink CC13x2 / CC26x2
2# Copyright (c) 2022 Vaishnav Achath
3# SPDX-License-Identifier: Apache-2.0
4
5if SOC_SERIES_CC13X2X7_CC26X2X7
6
7config SYS_CLOCK_HW_CYCLES_PER_SEC
8	default 32768
9
10# Note that when using the RTC as system clock, this needs to be 32768
11# to reduce truncation errors from accumulating due to conversion to/from
12# time, ticks, and HW cycles
13config SYS_CLOCK_TICKS_PER_SEC
14	default 32768
15
16config NUM_IRQS
17	default 38
18
19if IEEE802154
20
21config IEEE802154_CC13XX_CC26XX
22	# required for linking with PowerCC26X2_config in
23	# soc/soc_legacy/arm/ti_simplelink/cc13x2_cc26x2/power.c
24	select PM
25
26config IEEE802154_CC13XX_CC26XX_SUB_GHZ
27	# required for linking with PowerCC26X2_config in
28	# soc/soc_legacy/arm/ti_simplelink/cc13x2_cc26x2/power.c
29	select PM
30
31endif # IEEE802154
32
33if BT
34
35config BLE_CC13XX_CC26XX
36	bool
37	default y
38
39endif # BT
40
41endif # SOC_SERIES_CC13X2X7_CC26X2X7
42