Searched refs:xHigherPriorityTaskWoken (Results 1 – 8 of 8) sorted by relevance
/hal_espressif-3.6.0/components/freemodbus/port/ |
D | portevent.c | 88 BaseType_t xStatus, xHigherPriorityTaskWoken = pdFALSE; in xMBPortEventPost() local 93 xStatus = xQueueSendFromISR(xQueueHdl, (const void*)&eEvent, &xHigherPriorityTaskWoken); in xMBPortEventPost() 94 if ( xHigherPriorityTaskWoken ) in xMBPortEventPost()
|
D | portevent_m.c | 93 BaseType_t xHigherPriorityTaskWoken = pdFALSE; in xMBMasterPortEventPost() local 96 &xHigherPriorityTaskWoken ); in xMBMasterPortEventPost() 101 if (xHigherPriorityTaskWoken) portYIELD_FROM_ISR(); in xMBMasterPortEventPost()
|
/hal_espressif-3.6.0/examples/system/sysview_tracing/main/ |
D | sysview_tracing.c | 116 BaseType_t xHigherPriorityTaskWoken = pdFALSE; in example_timer_isr() local 118 …FromISR(tim_arg->thnd, tim_arg->count, eSetValueWithOverwrite, &xHigherPriorityTaskWoken) != pdPAS… in example_timer_isr() 122 if (xHigherPriorityTaskWoken == pdTRUE) { in example_timer_isr()
|
/hal_espressif-3.6.0/components/lwip/port/esp32/freertos/ |
D | sys_arch.c | 292 BaseType_t xHigherPriorityTaskWoken = pdFALSE; in sys_mbox_trypost_fromisr() local 294 ret = xQueueSendFromISR((*mbox)->os_mbox, &msg, &xHigherPriorityTaskWoken); in sys_mbox_trypost_fromisr() 296 if (xHigherPriorityTaskWoken == pdTRUE) { in sys_mbox_trypost_fromisr()
|
/hal_espressif-3.6.0/examples/peripherals/rmt/step_motor/components/step_motor/src/ |
D | step_motor_rmt.c | 267 BaseType_t xHigherPriorityTaskWoken = pdFALSE; in rmt_tx_loop_intr() local 268 xSemaphoreGiveFromISR(rmt_step_motor->notify_semphr, &xHigherPriorityTaskWoken); in rmt_tx_loop_intr() 269 if (xHigherPriorityTaskWoken == pdTRUE) { in rmt_tx_loop_intr()
|
/hal_espressif-3.6.0/examples/system/sysview_tracing/ |
D | README.md | 24 BaseType_t xHigherPriorityTaskWoken = pdFALSE; 25 …FromISR(tim_arg->thnd, tim_arg->count, eSetValueWithOverwrite, &xHigherPriorityTaskWoken) != pdPAS… 28 if (xHigherPriorityTaskWoken == pdTRUE) {
|
/hal_espressif-3.6.0/components/esp_timer/test/ |
D | test_esp_timer.c | 1047 BaseType_t xHigherPriorityTaskWoken = pdFALSE; in isr_callback1() local 1050 xSemaphoreGiveFromISR(done, &xHigherPriorityTaskWoken); in isr_callback1() 1051 if (xHigherPriorityTaskWoken) { in isr_callback1()
|
/hal_espressif-3.6.0/components/freertos/ |
D | History.txt | 513 xHigherPriorityTaskWoken parameter is not used, then pend a context switch 1178 (xHigherPriorityTaskWoken) is now optional and can be set to NULL if it
|