Searched refs:tx_length (Results 1 – 11 of 11) sorted by relevance
/hal_infineon-3.7.0/mtb-hal-cat1/source/ |
D | cyhal_spi.c | 1355 cy_rslt_t cyhal_spi_transfer(cyhal_spi_t *obj, const uint8_t *tx, size_t tx_length, uint8_t *rx, si… in cyhal_spi_transfer() argument 1364 cy_rslt_t rslt = cyhal_spi_transfer_async(obj, tx, tx_length, rx, rx_length); in cyhal_spi_transfer() 1373 cy_rslt_t cyhal_spi_transfer_async(cyhal_spi_t *obj, const uint8_t *tx, size_t tx_length, uint8_t *… in cyhal_spi_transfer_async() argument 1402 if (tx_length > rx_length) in cyhal_spi_transfer_async() 1411 obj->tx_buffer_size = tx_length - rx_length; in cyhal_spi_transfer_async() 1413 tx_length = rx_length; // Use tx_length to store entire transfer length in cyhal_spi_transfer_async() 1425 else if (rx_length > tx_length) in cyhal_spi_transfer_async() 1427 if (tx_length > 0) in cyhal_spi_transfer_async() 1433 obj->rx_buffer = rx + (tx_length * arr_size_modifier); in cyhal_spi_transfer_async() 1434 obj->rx_buffer_size = rx_length - tx_length; in cyhal_spi_transfer_async() [all …]
|
D | cyhal_uart.c | 1194 cy_rslt_t cyhal_uart_write(cyhal_uart_t *obj, void *tx, size_t *tx_length) in cyhal_uart_write() argument 1199 *tx_length = Cy_SCB_UART_PutArray(obj->base, tx, *tx_length); in cyhal_uart_write()
|
D | cyhal_audio_common.c | 1856 cy_rslt_t _cyhal_audioss_write_async(_cyhal_audioss_t *obj, const void *tx, size_t tx_length) in _cyhal_audioss_write_async() argument 1866 obj->async_tx_length = tx_length; in _cyhal_audioss_write_async()
|
/hal_infineon-3.7.0/mtb-hal-cat1/include_pvt/ |
D | cyhal_i2s_impl.h | 69 #define cyhal_i2s_write_async(obj, tx, tx_length) \ argument 70 _cyhal_audioss_write_async((_cyhal_audioss_t *)(obj), (tx), (tx_length))
|
D | cyhal_tdm_impl.h | 69 #define cyhal_tdm_write_async(obj, tx, tx_length) \ argument 70 _cyhal_audioss_write_async((_cyhal_audioss_t *)(obj), (tx), (tx_length))
|
D | cyhal_audio_common.h | 124 cy_rslt_t _cyhal_audioss_write_async(_cyhal_audioss_t *obj, const void *tx, size_t tx_length);
|
/hal_infineon-3.7.0/mtb-hal-cat1/include/ |
D | cyhal_spi.h | 380 cy_rslt_t cyhal_spi_transfer(cyhal_spi_t *obj, const uint8_t *tx, size_t tx_length, uint8_t *rx, si… 398 cy_rslt_t cyhal_spi_transfer_async(cyhal_spi_t *obj, const uint8_t *tx, size_t tx_length, uint8_t *…
|
D | cyhal_i2s.h | 403 cy_rslt_t cyhal_i2s_write_async(cyhal_i2s_t *obj, const void *tx, size_t tx_length);
|
D | cyhal_tdm.h | 431 cy_rslt_t cyhal_tdm_write_async(cyhal_tdm_t *obj, const void *tx, size_t tx_length);
|
D | cyhal_uart.h | 320 cy_rslt_t cyhal_uart_write(cyhal_uart_t *obj, void *tx, size_t *tx_length);
|
/hal_infineon-3.7.0/wifi-host-driver/WiFi_Host_Driver/src/bus_protocols/ |
D | whd_bus_spi_protocol.c | 152 whd_result_t whd_bus_spi_transfer(whd_driver_t whd_driver, const uint8_t *tx, size_t tx_length, uin… 255 whd_result_t whd_bus_spi_transfer(whd_driver_t whd_driver, const uint8_t *tx, size_t tx_length, uin… in whd_bus_spi_transfer() argument 258 …return cyhal_spi_transfer(whd_driver->bus_priv->spi_obj, tx, tx_length, rx, rx_length, write_fill); in whd_bus_spi_transfer()
|