Bluetooth: drivers: Convert ESP32 HCI driver to new API

Convert the hci_esp32.c HCI driver to the new HCI driver API.

Signed-off-by: Johan Hedberg <johan.hedberg@gmail.com>
This commit is contained in:
Johan Hedberg 2024-05-31 14:27:11 +03:00 committed by Anas Nashif
commit 8953b4eb63
62 changed files with 195 additions and 100 deletions

View file

@ -12,9 +12,6 @@ config HEAP_MEM_POOL_ADD_SIZE_BOARD
default 40960 if BT
default 4096
config BT_ESP32
default y if BT
endif # BOARD_ESP32S3_DEVKITM_ESP32S3_PROCPU
if BOARD_ESP32S3_DEVKITM_ESP32S3_APPCPU

View file

@ -25,6 +25,7 @@
zephyr,shell-uart = &uart0;
zephyr,flash = &flash0;
zephyr,code-partition = &slot0_partition;
zephyr,bt-hci = &esp32_bt_hci;
};
aliases {
@ -172,3 +173,7 @@
};
};
};
&esp32_bt_hci {
status = "okay";
};