esp-idf/examples/bluetooth/hci
Djordje Nedic facab8c5a7 tools: Increase the minimal supported CMake version to 3.16
This updates the minimal supported version of CMake to 3.16, which in turn enables us to use more CMake features and have a cleaner build system.
This is the version that provides most new features and also the one we use in our latest docker image for CI.
2022-06-01 06:35:02 +00:00
..
ble_adv_scan_combined tools: Increase the minimal supported CMake version to 3.16 2022-06-01 06:35:02 +00:00
controller_hci_uart_esp32 tools: Increase the minimal supported CMake version to 3.16 2022-06-01 06:35:02 +00:00
controller_hci_uart_esp32c3_and_esp32s3 tools: Increase the minimal supported CMake version to 3.16 2022-06-01 06:35:02 +00:00
controller_vhci_ble_adv tools: Increase the minimal supported CMake version to 3.16 2022-06-01 06:35:02 +00:00
hci_common_component components/bt: Update licenses 2021-12-08 10:59:06 +08:00
README.md Rename controller_hci_uart_esp32c3 to controller_hci_uart_esp32c3_and_esp32s3 2022-01-10 11:46:23 +08:00

README.md

Bluetooth Examples for Host Controller Interface

Note: To use examples in this directory, you need to have Bluetooth enabled in configuration.

Example Layout

This directory includes examples to demonstrate controller interactions by virtual HCI layer and UART.

controller_hci_uart_esp32

Demonstrates interaction with controller through HCI over UART on ESP32.

See the README.md file in the example controller_hci_uart.

controller_hci_uart_esp32c3_and_esp32s3

Demonstrates interaction with controller through HCI over UART on ESP32-C3/ESP32-S3.

See the README.md file in the example controller_hci_uart_esp32c3_and_esp32s3.

controller_vhci_ble_adv

Demonstrates interaction with controller though virtual HCI layer. In this example, simple BLE advertising is done.

See the README.md file in the example controller_vhci_ble_adv.

ble_adv_scan_combined

Demonstrates interaction with controller. In this example, BLE advertising and scanning is done. Also scanned advertising reports are parsed and displayed.

See the README.md file in the example ble_adv_scan_combined.

hci_common_component

This is separate component adding functionalities for HCI Layer. Since this component is just used by HCI examples, it is not placed in global components.