Home
last modified time | relevance | path

Searched refs:tx_data (Results 76 – 100 of 128) sorted by relevance

123456

/Zephyr-latest/drivers/serial/
Duart_nxp_s32_linflexd.c93 static int uart_nxp_s32_fifo_fill(const struct device *dev, const uint8_t *tx_data, in uart_nxp_s32_fifo_fill() argument
106 Linflexd_Uart_Ip_AsyncSend(config->instance, tx_data, 1); in uart_nxp_s32_fifo_fill()
Duart_rv32m1_lpuart.c92 const uint8_t *tx_data, in rv32m1_lpuart_fifo_fill() argument
102 LPUART_WriteByte(config->base, tx_data[num_tx++]); in rv32m1_lpuart_fifo_fill()
Duart_si32_usart.c90 static int usart_si32_fifo_fill(const struct device *dev, const uint8_t *tx_data, int size) in usart_si32_fifo_fill() argument
102 SI32_USART_A_write_data_u8(config->usart, tx_data[i]); in usart_si32_fifo_fill()
Duart_ene_kb1200.c124 static int kb1200_uart_fifo_fill(const struct device *dev, const uint8_t *tx_data, int size) in kb1200_uart_fifo_fill() argument
134 config->ser->SERTBUF = tx_data[tx_bytes]; in kb1200_uart_fifo_fill()
Duart_mcux_iuart.c85 const uint8_t *tx_data, in mcux_iuart_fifo_fill() argument
94 UART_WriteByte(config->base, tx_data[num_tx++]); in mcux_iuart_fifo_fill()
Duart_sam.c221 const uint8_t *tx_data, in uart_sam_fifo_fill() argument
232 uart->UART_THR = *tx_data; in uart_sam_fifo_fill()
Duart_xlnx_uartlite.c182 const uint8_t *tx_data, in xlnx_uartlite_fifo_fill() argument
194 xlnx_uartlite_write_tx_fifo(dev, tx_data[count++]); in xlnx_uartlite_fifo_fill()
Dleuart_gecko.c100 const uint8_t *tx_data, in leuart_gecko_fifo_fill() argument
109 base->TXDATA = (uint32_t)tx_data[num_tx++]; in leuart_gecko_fifo_fill()
Duart_bt.c158 static int uart_bt_fifo_fill(const struct device *dev, const uint8_t *tx_data, int len) in uart_bt_fifo_fill() argument
163 wrote = ring_buf_put(dev_data->uart.tx_ringbuf, tx_data, len); in uart_bt_fifo_fill()
Duart_numaker.c244 static int uart_numaker_fifo_fill(const struct device *dev, const uint8_t *tx_data, int size) in uart_numaker_fifo_fill() argument
253 uart->DAT = tx_data[tx_bytes++]; in uart_numaker_fifo_fill()
Duart_stellaris.c312 const uint8_t *tx_data, in uart_stellaris_fifo_fill() argument
319 config->uart->dr = (uint32_t)tx_data[num_tx++]; in uart_stellaris_fifo_fill()
Duart_max32.c258 static int api_fifo_fill(const struct device *dev, const uint8_t *tx_data, int size) in api_fifo_fill() argument
263 num_tx = MXC_UART_WriteTXFIFO(cfg->regs, (unsigned char *)tx_data, size); in api_fifo_fill()
Duart_mcux.c178 const uint8_t *tx_data, in uart_mcux_fifo_fill() argument
187 UART_WriteByte(config->base, tx_data[num_tx++]); in uart_mcux_fifo_fill()
Duart_renesas_ra.c426 static int uart_ra_fifo_fill(const struct device *dev, const uint8_t *tx_data, int len) in uart_ra_fifo_fill() argument
432 if (len <= 0 || tx_data == NULL) { in uart_ra_fifo_fill()
441 uart_ra_write_8(dev, TDR, tx_data[0]); in uart_ra_fifo_fill()
Duart_xmc4xxx.c278 static int uart_xmc4xxx_fifo_fill(const struct device *dev, const uint8_t *tx_data, int len) in uart_xmc4xxx_fifo_fill() argument
286 XMC_UART_CH_Transmit(config->uart, tx_data[i]); in uart_xmc4xxx_fifo_fill()
638 static int uart_xmc4xxx_async_tx(const struct device *dev, const uint8_t *tx_data, size_t buf_size, in uart_xmc4xxx_async_tx() argument
651 if (tx_data == NULL || buf_size == 0) { in uart_xmc4xxx_async_tx()
661 data->dma_tx.buffer = (uint8_t *)tx_data; in uart_xmc4xxx_async_tx()
Duart_rzt2m.c111 static int rzt2m_fifo_fill(const struct device *dev, const uint8_t *tx_data, int size) in rzt2m_fifo_fill() argument
119 *TDR(config->base) = (uint8_t)tx_data[num_tx++]; in rzt2m_fifo_fill()
Duart_sedi.c307 static int uart_sedi_fifo_fill(const struct device *dev, const uint8_t *tx_data, in uart_sedi_fifo_fill() argument
312 return sedi_uart_fifo_fill(instance, tx_data, size); in uart_sedi_fifo_fill()
Dusart_sam.c313 const uint8_t *tx_data, in usart_sam_fifo_fill() argument
324 usart->US_THR = *tx_data; in usart_sam_fifo_fill()
/Zephyr-latest/drivers/ieee802154/
Dieee802154_cc13xx_cc26xx_subg.c707 drv_data->tx_data[0] = buf->len + IEEE802154_FCS_LENGTH; in ieee802154_cc13xx_cc26xx_subg_tx()
713 memcpy(&drv_data->tx_data[IEEE802154_PHY_SUN_FSK_PHR_LEN], buf->data, buf->len); in ieee802154_cc13xx_cc26xx_subg_tx()
874 drv_data->tx_data[1] = BIT(3) | /* FCS Type: 2-octet FCS */ in drv_setup_tx_buffer()
877 drv_data->cmd_prop_tx_adv.pPkt = drv_data->tx_data; in drv_setup_tx_buffer()
/Zephyr-latest/tests/drivers/spi/spi_loopback/src/
Dspi.c72 static const char tx_data[BUF_SIZE] = "0123456789abcdef-\0"; variable
797 memcpy(buffer_tx, tx_data, sizeof(tx_data)); in spi_loopback_setup()
/Zephyr-latest/doc/kernel/services/data_passing/
Dlifos.rst103 tx_data = ...
106 k_lifo_put(&my_lifo, &tx_data);
/Zephyr-latest/drivers/display/
Ddisplay_st7789v.c71 uint8_t *tx_data, size_t tx_count) in st7789v_transmit() argument
76 tx_data, tx_count); in st7789v_transmit()
/Zephyr-latest/drivers/spi/
Dspi_xmc4xxx.c114 uint8_t tx_data = 0; in spi_xmc4xxx_shift_frames() local
119 tx_data = ctx->tx_buf[0]; in spi_xmc4xxx_shift_frames()
129 XMC_SPI_CH_Transmit(config->spi, tx_data, XMC_SPI_CH_MODE_STANDARD); in spi_xmc4xxx_shift_frames()
Dspi_andes_atcspi200.c761 uint32_t tx_num = 0, tx_data = 0; in spi_atcspi200_irq_handler() local
789 tx_data = *ctx->tx_buf; in spi_atcspi200_irq_handler()
792 tx_data = *(uint16_t *)ctx->tx_buf; in spi_atcspi200_irq_handler()
797 tx_data = 0; in spi_atcspi200_irq_handler()
803 sys_write32(tx_data, SPI_DATA(cfg->base)); in spi_atcspi200_irq_handler()
/Zephyr-latest/drivers/ethernet/eth_nxp_enet_qos/
Deth_nxp_enet_qos_mac.c133 struct nxp_enet_qos_tx_data *tx_data = in tx_dma_done() local
136 CONTAINER_OF(tx_data, struct nxp_enet_qos_mac_data, tx); in tx_dma_done()
137 struct net_pkt *pkt = tx_data->pkt; in tx_dma_done()

123456