4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 13:03:31 +08:00

[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

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