Home
last modified time | relevance | path

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

/openthread-2.7.6/tools/spi-hdlc-adapter/
Dspi-hdlc-adapter.c517 uint16_t spi_xfer_bytes = 0; in push_pull_spi() local
557 if (sSpiTxPayloadSize > spi_xfer_bytes) in push_pull_spi()
559 spi_xfer_bytes = sSpiTxPayloadSize; in push_pull_spi()
570 if (slave_data_len > spi_xfer_bytes) in push_pull_spi()
572 spi_xfer_bytes = slave_data_len; in push_pull_spi()
580 if (sSpiSmallPacketSize > spi_xfer_bytes) in push_pull_spi()
582 spi_xfer_bytes = (uint16_t)sSpiSmallPacketSize; in push_pull_spi()
586 spi_header_set_accept_len(sSpiTxFrameBuffer, spi_xfer_bytes); in push_pull_spi()
590 ret = do_spi_xfer(spi_xfer_bytes); in push_pull_spi()
632 …log_debug_buffer("SPI-TX", sSpiTxFrameBuffer, (int)spi_xfer_bytes + HEADER_LEN + sSpiRxAlignAllowa… in push_pull_spi()
[all …]