Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions boards/renesas/da1469x_dk_pro/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,18 @@ config IDLE_STACK_SIZE

#endif # PM || PM_DEVICE

if BT

choice BT_HCI_BUS_TYPE
default BT_DA1469X
endchoice

config BT_WAIT_NOP
default y

config TEST_RANDOM_GENERATOR
default y

endif # BT

endif # BOARD_DA1469X_DK_PRO
1 change: 1 addition & 0 deletions drivers/bluetooth/hci/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ zephyr_library_sources_ifdef(CONFIG_BT_SILABS_HCI slz_hci.c)
zephyr_library_sources_ifdef(CONFIG_BT_PSOC6_BLESS hci_psoc6_bless.c)
zephyr_library_sources_ifdef(CONFIG_SOC_NRF5340_CPUAPP nrf53_support.c)
zephyr_library_sources_ifdef(CONFIG_BT_AMBIQ_HCI hci_ambiq.c apollox_blue.c)
zephyr_library_sources_ifdef(CONFIG_BT_DA1469X hci_da1469x.c)
6 changes: 6 additions & 0 deletions drivers/bluetooth/hci/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@ config BT_PSOC6_BLESS
PSOC6 BLESS driver with BLE Controller which operates in
Single CPU mode.

config BT_DA1469X
bool "DA1469x HCI driver"
help
Bluetooth HCI driver for communication with CMAC core
on DA1469x MCU.

config BT_NO_DRIVER
bool "No default HCI driver"
select BT_HAS_HCI_VS
Expand Down
Loading