Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/spi/
Dspi_shell.c49 int bytes_to_send = argc - TXRX_ARGV_BYTES; in cmd_spi_transceive() local
51 for (int i = 0; i < bytes_to_send; i++) { in cmd_spi_transceive()
55 const struct spi_buf tx_buffers = {.buf = tx_buffer, .len = bytes_to_send}; in cmd_spi_transceive()
56 const struct spi_buf rx_buffers = {.buf = rx_buffer, .len = bytes_to_send}; in cmd_spi_transceive()
69 shell_hexdump(ctx, tx_buffer, bytes_to_send); in cmd_spi_transceive()
72 shell_hexdump(ctx, rx_buffer, bytes_to_send); in cmd_spi_transceive()
/Zephyr-latest/drivers/i2c/
Di2c_xilinx_axi.c507 uint32_t bytes_to_send = bytes_left; in i2c_xilinx_axi_write() local
511 if (bytes_to_send > fifo_space) { in i2c_xilinx_axi_write()
512 bytes_to_send = fifo_space; in i2c_xilinx_axi_write()
514 while (bytes_to_send) { in i2c_xilinx_axi_write()
521 bytes_to_send--; in i2c_xilinx_axi_write()
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/general/src/
Dmain_l2cap_ecred.c48 size_t bytes_to_send; member
401 send_sdu(ch->iteration, ch->chan_id, ch->bytes_to_send); in send_sdu_chan_worker()
410 channels[k].bytes_to_send = (k == LONG_MSG_CHAN_IDX) ? LONG_MSG : SHORT_MSG; in send_sdu_concurrently()