Home
last modified time | relevance | path

Searched refs:tx_length (Results 1 – 11 of 11) sorted by relevance

/hal_infineon-3.7.0/mtb-hal-cat1/source/
Dcyhal_spi.c1355 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 …]
Dcyhal_uart.c1194 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()
Dcyhal_audio_common.c1856 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/
Dcyhal_i2s_impl.h69 #define cyhal_i2s_write_async(obj, tx, tx_length) \ argument
70 _cyhal_audioss_write_async((_cyhal_audioss_t *)(obj), (tx), (tx_length))
Dcyhal_tdm_impl.h69 #define cyhal_tdm_write_async(obj, tx, tx_length) \ argument
70 _cyhal_audioss_write_async((_cyhal_audioss_t *)(obj), (tx), (tx_length))
Dcyhal_audio_common.h124 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/
Dcyhal_spi.h380 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 *…
Dcyhal_i2s.h403 cy_rslt_t cyhal_i2s_write_async(cyhal_i2s_t *obj, const void *tx, size_t tx_length);
Dcyhal_tdm.h431 cy_rslt_t cyhal_tdm_write_async(cyhal_tdm_t *obj, const void *tx, size_t tx_length);
Dcyhal_uart.h320 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/
Dwhd_bus_spi_protocol.c152 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()