Skip to content

Commit ed018f8

Browse files
benni44dleach02
authored andcommitted
soc: ti: simplelink: cc13x2_cc26x2: allow basic BT without zepyhr stack
Allow developer to use the baremetal Bluetooth functionalities of the CC13X2 and CC26X2 series SoCs without having to use the full Zephyr Bluetooth stack. Signed-off-by: Benedikt Streicher <[email protected]>
1 parent e7cfb05 commit ed018f8

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

soc/ti/simplelink/cc13x2_cc26x2/Kconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,10 @@ config CC13X2_CC26X2_BOOTLOADER_BACKDOOR_LEVEL
6060
Set the active level of the pin selected for the bootloader backdoor.
6161

6262
endmenu
63+
64+
config CC13X2_CC26X2_BASIC_BT
65+
bool "Baremetal Bluetooth support"
66+
depends on SOC_CC1352P
67+
help
68+
Enable Bluetooth support for the CC13X2 and CC26X2 series of MCUs
69+
using the TI driverlib without the Zephyr or TI Bluetooth stack.

soc/ti/simplelink/cc13x2_cc26x2/Kconfig.defconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ config IEEE802154_CC13XX_CC26XX_SUB_GHZ
3030

3131
endif # IEEE802154
3232

33-
if BT
33+
if BT || CC13X2_CC26X2_BASIC_BT
3434

3535
config BLE_CC13XX_CC26XX
3636
bool
3737
default y
3838

39-
endif # BT
39+
endif # BT || CC13X2_CC26X2_BASIC_BT
4040

4141
endif # SOC_SERIES_CC13X2_CC26X2

0 commit comments

Comments
 (0)