/hal_espressif-3.6.0/examples/peripherals/mcpwm/mcpwm_capture_hc_sr04/main/ |
D | mcpwm_capture_hc_sr04.c | 64 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/ |
D | test_dedicated_gpio.c | 165 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()
|
D | test_pwm.c | 481 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/ |
D | async_memcpy.rst | 60 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/ |
D | matrix_keyboard.c | 51 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/ |
D | mcpwm_bldc_hall_control_example_main.c | 56 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/ |
D | test_async_memcpy.c | 203 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/ |
D | dedic_gpio.rst | 95 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/ |
D | esp_eth_mac_openeth.c | 61 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()
|
D | esp_eth_mac_esp.c | 420 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()
|
D | esp_eth_mac_w5500.c | 305 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()
|
D | esp_eth_mac_dm9051.c | 378 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()
|
D | esp_eth_mac_ksz8851snl.c | 62 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/ |
D | esp_eth_mac_enc28j60.c | 711 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()
|