Home
last modified time | relevance | path

Searched refs:awoken (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/components/driver/spi/gpspi/
Dspi_slave_hd.c286 BaseType_t awoken = pdFALSE; in spi_slave_hd_intr_segment() local
289 awoken |= intr_check_clear_callback(host, SPI_EV_BUF_TX, callback->cb_buffer_tx); in spi_slave_hd_intr_segment()
290 awoken |= intr_check_clear_callback(host, SPI_EV_BUF_RX, callback->cb_buffer_rx); in spi_slave_hd_intr_segment()
291 awoken |= intr_check_clear_callback(host, SPI_EV_CMD9, callback->cb_cmd9); in spi_slave_hd_intr_segment()
292 awoken |= intr_check_clear_callback(host, SPI_EV_CMDA, callback->cb_cmdA); in spi_slave_hd_intr_segment()
315 awoken |= cb_awoken; in spi_slave_hd_intr_segment()
318 ret = xQueueSendFromISR(host->tx_ret_queue, &host->tx_desc, &awoken); in spi_slave_hd_intr_segment()
334 awoken |= cb_awoken; in spi_slave_hd_intr_segment()
337 ret = xQueueSendFromISR(host->rx_ret_queue, &host->rx_desc, &awoken); in spi_slave_hd_intr_segment()
347 ret = xQueueReceiveFromISR(host->tx_trans_queue, &host->tx_desc, &awoken); in spi_slave_hd_intr_segment()
[all …]
/hal_espressif-latest/components/driver/spi/include/driver/
Dspi_slave_hd.h41 typedef bool (*slave_cb_t)(void* arg, spi_slave_hd_event_t* event, BaseType_t* awoken);
/hal_espressif-latest/components/driver/spi/sdspi/
Dsdspi_host.c314 BaseType_t awoken = pdFALSE; in gpio_intr() local
316 xSemaphoreGiveFromISR(slot->semphr_int, &awoken); in gpio_intr()
318 if (awoken) { in gpio_intr()