2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2023-08-29 03:04:28 +08:00
|
|
|
# Remove after 3.7.0 is released
|
|
|
|
if(CONFIG_BT_RPMSG)
|
|
|
|
message(FATAL_ERROR "CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Remove after 3.7.0 is released
|
|
|
|
if(CONFIG_BT_HCI_IPC)
|
|
|
|
dt_chosen(chosen_hci_rpmsg PROPERTY "zephyr,bt-hci-rpmsg-ipc")
|
|
|
|
if(DEFINED chosen_hci_rpmsg)
|
|
|
|
message(FATAL_ERROR "zephyr,bt-hci-rpmsg-ipc has been renamed to zephyr,bt-hci-ipc")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2022-05-23 19:50:52 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_BT_B91 hci_b91.c)
|
2023-10-04 14:54:18 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_BT_AIROC cyw43xxx.c)
|
2021-08-05 05:22:54 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_BT_ESP32 hci_esp32.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_BT_H4 h4.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_BT_H5 h5.c)
|
2023-08-29 03:04:28 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_BT_HCI_IPC ipc.c)
|
2021-08-05 05:22:54 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_BT_SPI spi.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_BT_STM32_IPM ipm_stm32wb.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_BT_USERCHAN userchan.c)
|
2023-04-19 17:23:32 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_BT_SILABS_HCI slz_hci.c)
|
2023-05-01 13:37:59 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_BT_PSOC6_BLESS hci_psoc6_bless.c)
|
2023-03-22 19:11:25 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_SOC_NRF5340_CPUAPP nrf53_support.c)
|