Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/main/
Dmsc_example_main.c28 static QueueHandle_t app_queue; variable
38 xQueueSend(app_queue, event, 10); in msc_event_cb()
121 xQueueReceive(app_queue, &app_event, portMAX_DELAY); in wait_for_msc_device()
133 app_queue = xQueueCreate(3, sizeof(msc_host_event_t)); in app_main()
134 assert(app_queue); in app_main()
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/test/
Dtest_msc.c44 static QueueHandle_t app_queue; variable
74 xQueueSend(app_queue, event, 10); in msc_event_cb()
184 TEST_ASSERT( app_queue = xQueueCreate(5, sizeof(msc_host_event_t)) ); in msc_setup()
214 xQueueReceive(app_queue, &app_event, portMAX_DELAY); in msc_setup()
238 vQueueDelete(app_queue); in msc_teardown()