ESP-IDF
s_ble_hidh_cb_semaphore
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
s_ble_hidh_cb_semaphore
s_ble_hidh_cb_semaphore variable
Syntax
Show:
Summary
Declaration
from
ble_hidh.c:38
static
SemaphoreHandle_t
s_ble_hidh_cb_semaphore
=
NULL
;
Examples
References
from
examples
Code
Location
Referrer
static
SemaphoreHandle_t
s_ble_hidh_cb_semaphore
=
NULL
;
ble_hidh.c:38
xSemaphoreTake
(
s_ble_hidh_cb_semaphore
,
portMAX_DELAY
)
;
ble_hidh.c:42
WAIT_CB()
xSemaphoreGive
(
s_ble_hidh_cb_semaphore
)
;
ble_hidh.c:47
SEND_CB()
ESP_RETURN_ON_FALSE
(
!
s_ble_hidh_cb_semaphore
,
ESP_ERR_INVALID_STATE
,
TAG
,
"Already initialized"
)
;
ble_hidh.c:622
esp_ble_hidh_init()
s_ble_hidh_cb_semaphore
=
xSemaphoreCreateBinary
(
)
;
ble_hidh.c:625
esp_ble_hidh_init()
ESP_RETURN_ON_FALSE
(
s_ble_hidh_cb_semaphore
,
ble_hidh.c:626
esp_ble_hidh_init()
if
(
s_ble_hidh_cb_semaphore
)
{
ble_hidh.c:636
esp_ble_hidh_init()
vSemaphoreDelete
(
s_ble_hidh_cb_semaphore
)
;
ble_hidh.c:637
esp_ble_hidh_init()
s_ble_hidh_cb_semaphore
=
NULL
;
ble_hidh.c:638
esp_ble_hidh_init()
ESP_RETURN_ON_FALSE
(
s_ble_hidh_cb_semaphore
,
ESP_ERR_INVALID_STATE
,
TAG
,
"Already deinitialized"
)
;
ble_hidh.c:645
esp_ble_hidh_deinit()
if
(
s_ble_hidh_cb_semaphore
)
{
ble_hidh.c:650
esp_ble_hidh_deinit()
vSemaphoreDelete
(
s_ble_hidh_cb_semaphore
)
;
ble_hidh.c:651
esp_ble_hidh_deinit()
s_ble_hidh_cb_semaphore
=
NULL
;
ble_hidh.c:652
esp_ble_hidh_deinit()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
s_ble_hidh_cb_semaphore
is written by 2 functions and is read by 4 functions:
esp_ble_hidh_init()
esp_ble_hidh_deinit()
All items filtered out
s_ble_hidh_cb_semaphore
WAIT_CB()
SEND_CB()
esp_ble_hidh_init()
esp_ble_hidh_deinit()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out