Home
last modified time | relevance | path

Searched refs:vhci_send_sem (Results 1 – 1 of 1) sorted by relevance

/hal_espressif-latest/components/bt/host/nimble/esp-hci/src/
Desp_nimble_hci.c48 static SemaphoreHandle_t vhci_send_sem; variable
86 if (xSemaphoreTake(vhci_send_sem, NIMBLE_VHCI_TIMEOUT_MS / portTICK_PERIOD_MS) == pdTRUE) { in ble_hci_trans_hs_cmd_tx()
123 if (xSemaphoreTake(vhci_send_sem, NIMBLE_VHCI_TIMEOUT_MS / portTICK_PERIOD_MS) == pdTRUE) { in ble_hci_trans_hs_acl_tx()
188 if (vhci_send_sem) { in controller_rcv_pkt_ready()
189 xSemaphoreGive(vhci_send_sem); in controller_rcv_pkt_ready()
301 vhci_send_sem = xSemaphoreCreateBinary(); in esp_nimble_hci_init()
302 if (vhci_send_sem == NULL) { in esp_nimble_hci_init()
307 xSemaphoreGive(vhci_send_sem); in esp_nimble_hci_init()
323 if (vhci_send_sem) { in esp_nimble_hci_deinit()
325 xSemaphoreTake(vhci_send_sem, portMAX_DELAY); in esp_nimble_hci_deinit()
[all …]