Home
last modified time | relevance | path

Searched refs:rx_byte (Results 1 – 2 of 2) sorted by relevance

/Zephyr-Core-3.4.0/drivers/w1/
Dw1_zephyr_serial.c98 uint8_t *rx_byte) in serial_tx_rx_byte() argument
100 __ASSERT_NO_MSG(rx_byte != NULL); in serial_tx_rx_byte()
118 *rx_byte = 0; in serial_tx_rx_byte()
124 *rx_byte |= (uint8_t)(byte_representation[i] == 0xFF) << i; in serial_tx_rx_byte()
195 uint8_t rx_byte; in w1_serial_read_byte() local
197 if (serial_tx_rx_byte(dev, tx_byte, &rx_byte) != 0) { in w1_serial_read_byte()
201 return rx_byte; in w1_serial_read_byte()
206 uint8_t rx_byte; in w1_serial_write_byte() local
208 return serial_tx_rx_byte(dev, byte, &rx_byte); in w1_serial_write_byte()
/Zephyr-Core-3.4.0/drivers/spi/
Dspi_oc_simple.c101 uint8_t rx_byte; in spi_oc_simple_transceive() local
139 rx_byte = sys_read8(SPI_OC_SIMPLE_SPDR(info)); in spi_oc_simple_transceive()
143 *ctx->rx_buf = rx_byte; in spi_oc_simple_transceive()