Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/examples/peripherals/mcpwm/mcpwm_capture_hc_sr04/main/
Dmcpwm_capture_hc_sr04.c64 BaseType_t high_task_wakeup = pdFALSE; in sr04_echo_isr_handler() local
74 xQueueSendFromISR(cap_queue, &pulse_count, &high_task_wakeup); in sr04_echo_isr_handler()
76 return high_task_wakeup == pdTRUE; in sr04_echo_isr_handler()
/hal_espressif-3.6.0/components/driver/test/
Dtest_dedicated_gpio.c165 BaseType_t high_task_wakeup = pdFALSE; in test_dedic_gpio_isr_callback() local
167 xSemaphoreGiveFromISR(sem, &high_task_wakeup); in test_dedic_gpio_isr_callback()
168 if (high_task_wakeup) { in test_dedic_gpio_isr_callback()
Dtest_pwm.c481 BaseType_t high_task_wakeup = pdFALSE; in test_mcpwm_intr_handler() local
483 vTaskNotifyGiveFromISR(cb_data->task_hdl, &high_task_wakeup); in test_mcpwm_intr_handler()
484 return high_task_wakeup == pdTRUE; in test_mcpwm_intr_handler()
/hal_espressif-3.6.0/docs/en/api-reference/system/
Dasync_memcpy.rst60 BaseType_t high_task_wakeup = pdFALSE;
61 …SemphrGiveInISR(semphr, &high_task_wakeup); // high_task_wakeup set to pdTRUE if some high priorit…
62 return high_task_wakeup == pdTRUE;
/hal_espressif-3.6.0/examples/peripherals/gpio/matrix_keyboard/components/matrix_keyboard/src/
Dmatrix_keyboard.c51 BaseType_t high_task_wakeup = pdFALSE; in matrix_kbd_row_isr_callback() local
59 xTimerStartFromISR(mkbd->debounce_timer, &high_task_wakeup); in matrix_kbd_row_isr_callback()
60 return high_task_wakeup == pdTRUE; in matrix_kbd_row_isr_callback()
/hal_espressif-3.6.0/examples/peripherals/mcpwm/mcpwm_bldc_hall_control/main/
Dmcpwm_bldc_hall_control_example_main.c56 BaseType_t high_task_wakeup = pdFALSE; in bldc_hall_updated() local
57 vTaskNotifyGiveFromISR(task_to_notify, &high_task_wakeup); in bldc_hall_updated()
58 return high_task_wakeup == pdTRUE; in bldc_hall_updated()
/hal_espressif-3.6.0/components/esp_hw_support/test/
Dtest_async_memcpy.c203 BaseType_t high_task_wakeup = pdFALSE; in test_async_memcpy_isr_cb() local
206 xSemaphoreGiveFromISR(sem, &high_task_wakeup); in test_async_memcpy_isr_cb()
208 return high_task_wakeup == pdTRUE; in test_async_memcpy_isr_cb()
/hal_espressif-3.6.0/docs/en/api-reference/peripherals/
Ddedic_gpio.rst95 BaseType_t high_task_wakeup = pdFALSE;
96 xSemaphoreGiveFromISR(sem, &high_task_wakeup);
97 return high_task_wakeup == pdTRUE;
/hal_espressif-3.6.0/components/esp_eth/src/
Desp_eth_mac_openeth.c61 BaseType_t high_task_wakeup; in emac_opencores_isr_handler() local
67 vTaskNotifyGiveFromISR(emac->rx_task_hdl, &high_task_wakeup); in emac_opencores_isr_handler()
68 if (high_task_wakeup) { in emac_opencores_isr_handler()
Desp_eth_mac_esp.c420 BaseType_t high_task_wakeup = pdFALSE; in emac_isr_default_handler() local
427 vTaskNotifyGiveFromISR(emac->rx_task_hdl, &high_task_wakeup); in emac_isr_default_handler()
428 if (high_task_wakeup == pdTRUE) { in emac_isr_default_handler()
Desp_eth_mac_w5500.c305 BaseType_t high_task_wakeup = pdFALSE; in w5500_isr_handler() local
307 vTaskNotifyGiveFromISR(emac->rx_task_hdl, &high_task_wakeup); in w5500_isr_handler()
308 if (high_task_wakeup != pdFALSE) { in w5500_isr_handler()
Desp_eth_mac_dm9051.c378 BaseType_t high_task_wakeup = pdFALSE; in dm9051_isr_handler() local
380 vTaskNotifyGiveFromISR(emac->rx_task_hdl, &high_task_wakeup); in dm9051_isr_handler()
381 if (high_task_wakeup != pdFALSE) { in dm9051_isr_handler()
Desp_eth_mac_ksz8851snl.c62 BaseType_t high_task_wakeup = pdFALSE; in ksz8851_isr_handler() local
63 vTaskNotifyGiveFromISR(emac->rx_task_hdl, &high_task_wakeup); in ksz8851_isr_handler()
64 if (high_task_wakeup != pdFALSE) { in ksz8851_isr_handler()
/hal_espressif-3.6.0/examples/ethernet/enc28j60/components/eth_enc28j60/
Desp_eth_mac_enc28j60.c711 BaseType_t high_task_wakeup = pdFALSE; in enc28j60_isr_handler() local
713 vTaskNotifyGiveFromISR(emac->rx_task_hdl, &high_task_wakeup); in enc28j60_isr_handler()
714 if (high_task_wakeup != pdFALSE) { in enc28j60_isr_handler()