| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- Controller && VHCI
- ==================
- Overview
- --------
- `Instructions`_
- .. _Instructions: ../template.html
- Application Example
- -------------------
- Check :example:`bluetooth` folder in ESP-IDF examples, which contains the following example:
- :example:`bluetooth/ble_adv`
- This is a BLE advertising demo with virtual HCI interface. Send Reset/ADV_PARAM/ADV_DATA/ADV_ENABLE HCI command for BLE advertising.
- API Reference
- -------------
- Header Files
- ^^^^^^^^^^^^
- * :component_file:`bt/include/bt.h`
- Type Definitions
- ^^^^^^^^^^^^^^^^
- .. doxygentypedef:: esp_vhci_host_callback_t
- Enumerations
- ^^^^^^^^^^^^
- .. doxygenenum:: esp_bt_mode_t
- Structures
- ^^^^^^^^^^
- .. doxygenstruct:: esp_bt_controller_config_t
- :members:
- .. doxygenstruct:: esp_vhci_host_callback
- :members:
- Functions
- ^^^^^^^^^
- .. doxygenfunction:: esp_bt_controller_init
- .. doxygenfunction:: esp_bt_controller_deinit
- .. doxygenfunction:: esp_bt_controller_enable
- .. doxygenfunction:: esp_bt_controller_disable
- .. doxygenfunction:: esp_bt_controller_get_status
- .. doxygenfunction:: esp_vhci_host_check_send_available
- .. doxygenfunction:: esp_vhci_host_send_packet
- .. doxygenfunction:: esp_vhci_host_register_callback
|