diff --git a/examples/README.md b/examples/README.md index 9728c3216..240e27038 100644 --- a/examples/README.md +++ b/examples/README.md @@ -9,6 +9,7 @@ The examples are grouped into subdirectories by category. Each category director * `bluetooth/bluedroid` contains Classic BT, BLE and coex examples using default Bluedroid host stack. * `bluetooth/nimble` contains BLE examples using NimBLE host stack. * `bluetooth/esp_ble_mesh` contains ESP BLE Mesh examples. +* `bluetooth/hci` contains HCI transport (VHCI and HCI UART) examples * `ethernet` contains Ethernet examples. * `get-started` contains some very simple examples with minimal functionality. * `mesh` contains Wi-Fi Mesh examples. diff --git a/examples/bluetooth/bluedroid/README.md b/examples/bluetooth/bluedroid/README.md index f7173737b..9a8aa7f17 100644 --- a/examples/bluetooth/bluedroid/README.md +++ b/examples/bluetooth/bluedroid/README.md @@ -8,6 +8,5 @@ The examples are grouped into subdirectories by category. Each category director * `classic_bt` contains Classic BT examples * `ble` contains BLE examples * `coex` contains Classic BT and BLE coex examples -* `hci` contains HCI transport (VHCI and HCI UART) examples See the [README.md](../../README.md) file in the upper level [examples](../../) directory for more information about examples. diff --git a/examples/bluetooth/hci/README.md b/examples/bluetooth/hci/README.md new file mode 100644 index 000000000..fd263246d --- /dev/null +++ b/examples/bluetooth/hci/README.md @@ -0,0 +1,19 @@ +# Bluetooth Examples for Bluedroid host + +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 + +Demonstrates interaction with controller through HCI over UART. + +See the [README.md](./controller_hci_uart/README.md) file in the example [controller_hci_uart](./controller_hci_uart). + +## controller_vhci_ble_adv + +Demonstrates interaction with controller though virtual HCI layer. In this example, simple BLE advertising is done. + +See the [README.md](./controller_vhci_ble_adv/README.md) file in the example [controller_vhci_ble_adv](./controller_vhci_ble_adv).