Home
last modified time | relevance | path

Searched refs:tx_lsbfirst (Results 1 – 9 of 9) sorted by relevance

/hal_espressif-3.4.0/components/hal/
Dspi_hal_iram.c50 spi_ll_set_tx_lsbfirst(hw, dev->tx_lsbfirst); in spi_hal_setup_device()
131 spi_ll_set_command(hw, trans->cmd, cmdlen, dev->tx_lsbfirst); in spi_hal_setup_trans()
132 spi_ll_set_address(hw, trans->addr, addrlen, dev->tx_lsbfirst); in spi_hal_setup_trans()
Dspi_slave_hal.c47 spi_ll_set_tx_lsbfirst(hal->hw, hal->tx_lsbfirst); in spi_slave_hal_setup_device()
Dspi_slave_hd_hal.c88 spi_ll_set_tx_lsbfirst(hw, hal_config->tx_lsbfirst); in spi_slave_hd_hal_init()
/hal_espressif-3.4.0/components/hal/include/hal/
Dspi_slave_hal.h68 uint32_t tx_lsbfirst : 1; member
Dspi_hal.h151 uint32_t tx_lsbfirst : 1; ///< Whether LSB is sent first for TX data, device specific member
Dspi_slave_hd_hal.h84 … uint32_t tx_lsbfirst : 1; ///< Whether TX data should be sent with LSB first. member
/hal_espressif-3.4.0/components/driver/
Dspi_slave.c218 hal->tx_lsbfirst = (slave_config->flags & SPI_SLAVE_TXBIT_LSBFIRST) ? 1 : 0; in spi_slave_initialize()
Dspi_slave_hd.c116 .tx_lsbfirst = (config->flags & SPI_SLAVE_HD_RXBIT_LSBFIRST), in spi_slave_hd_init()
Dspi_master.c406 hal_dev->tx_lsbfirst = dev_config->flags & SPI_DEVICE_TXBIT_LSBFIRST ? 1 : 0; in spi_bus_add_device()