Function esp_idf_sys::esp_ble_hci_trans_cfg_hs

source ยท
pub unsafe extern "C" fn esp_ble_hci_trans_cfg_hs(
    evt_cb: ble_hci_trans_rx_cmd_fn,
    evt_arg: *mut c_void,
    acl_cb: ble_hci_trans_rx_acl_fn,
    acl_arg: *mut c_void,
)
Expand description

Configures the HCI transport to operate with a host. The transport will execute specified callbacks upon receiving HCI packets from the controller.

@param evt_cb The callback to execute upon receiving an HCI event. @param evt_arg Optional argument to pass to the event callback. @param acl_cb The callback to execute upon receiving ACL data. @param acl_arg Optional argument to pass to the ACL callback.