Searched refs:btstack_run_loop_queue (Results 1 – 2 of 2) sorted by relevance
/btstack/platform/wiced/ |
H A D | btstack_run_loop_wiced.c | 65 static wiced_queue_t btstack_run_loop_queue; variable 86 wiced_rtos_push_to_queue(&btstack_run_loop_queue, &message, WICED_NEVER_TIMEOUT); in btstack_run_loop_wiced_execute_on_main_thread_new() 94 wiced_rtos_push_to_queue(&btstack_run_loop_queue, &message, WICED_NEVER_TIMEOUT); in btstack_run_loop_wiced_execute_code_on_main_thread() 116 wiced_rtos_pop_from_queue( &btstack_run_loop_queue, &message, timeout_ms); in btstack_run_loop_wiced_execute() 132 wiced_rtos_init_queue(&btstack_run_loop_queue, "BTstack Run Loop", sizeof(function_call_t), 5); in btstack_run_loop_wiced_btstack_run_loop_init()
|
/btstack/platform/freertos/ |
H A D | btstack_run_loop_freertos.c | 98 static QueueHandle_t btstack_run_loop_queue; variable 178 BaseType_t res = xQueueReceive( btstack_run_loop_queue, &message, 0); in btstack_run_loop_freertos_execute() 221 …btstack_run_loop_queue = xQueueCreateStatic(RUN_LOOP_QUEUE_LENGTH, RUN_LOOP_QUEUE_ITEM_SIZE, btsta… in btstack_run_loop_freertos_init() 224 btstack_run_loop_queue = xQueueCreate(RUN_LOOP_QUEUE_LENGTH, RUN_LOOP_QUEUE_ITEM_SIZE); in btstack_run_loop_freertos_init() 286 BaseType_t res = xQueueSendToBack(btstack_run_loop_queue, &message, 0); // portMAX_DELAY); in btstack_run_loop_freertos_execute_code_on_main_thread()
|