Home
last modified time | relevance | path

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

/hal_espressif-latest/components/hal/
Dspi_hal_iram.c67 if (trans->rcv_buffer && !dev->no_compensate && dev->half_duplex) { in spi_hal_setup_trans()
139 if (trans->rcv_buffer) { in spi_hal_prepare_data()
143 … lldesc_setup_link(hal->dmadesc_rx, trans->rcv_buffer, ((trans->rx_bitlen + 7) / 8), true); in spi_hal_prepare_data()
179 if ((!dev->half_duplex && trans->rcv_buffer) || trans->send_buffer) { in spi_hal_prepare_data()
184 spi_ll_enable_miso(hw, (trans->rcv_buffer) ? 1 : 0); in spi_hal_prepare_data()
202 if (trans->rcv_buffer && !hal->dma_enabled) { in spi_hal_fetch_result()
204 spi_ll_read_buffer(hal->hw, trans->rcv_buffer, trans->rx_bitlen); in spi_hal_fetch_result()
/hal_espressif-latest/components/hal/include/hal/
Dspi_hal.h97 uint8_t *rcv_buffer; ///< Buffer to hold the receive data. member
/hal_espressif-latest/components/driver/spi/gpspi/
Dspi_master.c603 hal_trans.rcv_buffer = (uint8_t*)host->cur_trans_buf.buffer_to_rcv; in spi_new_trans()