[add]Add nrf52833 support for Bluetooth protocol stack

This commit is contained in:
rice.chen 2021-08-16 19:14:49 +08:00 committed by supperthomas
parent 8e0cebbd45
commit 7f737e5e63
1 changed files with 19 additions and 0 deletions

View File

@ -91,6 +91,25 @@ if BSP_USING_UART
depends on BSP_USING_UART0
endif
choice
prompt "BLE STACK"
default BLE_STACK_USING_NULL
help
Select the ble stack
config BLE_STACK_USING_NULL
bool "not use the ble stack"
config BSP_USING_SOFTDEVICE
select PKG_USING_NRF5X_SDK
bool "Nordic softdevice(perpheral)"
config BSP_USING_NIMBLE
select PKG_USING_NIMBLE
select PKG_NIMBLE_BSP_NRF52840
bool "use nimble stack(iot)"
endchoice
endmenu