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 <streicher.b@posteo.de>
This commit is contained in:
parent
e7cfb05c72
commit
ed018f82f5
2 changed files with 9 additions and 2 deletions
|
|
@ -60,3 +60,10 @@ config CC13X2_CC26X2_BOOTLOADER_BACKDOOR_LEVEL
|
|||
Set the active level of the pin selected for the bootloader backdoor.
|
||||
|
||||
endmenu
|
||||
|
||||
config CC13X2_CC26X2_BASIC_BT
|
||||
bool "Baremetal Bluetooth support"
|
||||
depends on SOC_CC1352P
|
||||
help
|
||||
Enable Bluetooth support for the CC13X2 and CC26X2 series of MCUs
|
||||
using the TI driverlib without the Zephyr or TI Bluetooth stack.
|
||||
|
|
|
|||
|
|
@ -30,12 +30,12 @@ config IEEE802154_CC13XX_CC26XX_SUB_GHZ
|
|||
|
||||
endif # IEEE802154
|
||||
|
||||
if BT
|
||||
if BT || CC13X2_CC26X2_BASIC_BT
|
||||
|
||||
config BLE_CC13XX_CC26XX
|
||||
bool
|
||||
default y
|
||||
|
||||
endif # BT
|
||||
endif # BT || CC13X2_CC26X2_BASIC_BT
|
||||
|
||||
endif # SOC_SERIES_CC13X2_CC26X2
|
||||
|
|
|
|||
Loading…
Reference in a new issue