ESP-IDF
SPI_SWAP_DATA_TX
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
SPI_SWAP_DATA_TX
SPI_SWAP_DATA_TX macro
Transform unsigned integer of length <= 32 bits to the format which can be sent by the SPI driver directly. E.g. to send 9 bits of data, you can: uint16_t data = SPI_SWAP_DATA_TX(0x145, 9); Then points tx_buffer to ``&data``.
Syntax
Show:
Summary
Declaration
from
spi_common.h:39
#define
SPI_SWAP_DATA_TX
(
DATA
,
LEN
)
__builtin_bswap32
(
(
uint32_t
)
(
DATA
)
<
<
(
32
-
(
LEN
)
)
)
Arguments
Argument
Description
DATA
Data to be sent, can be uint8_t, uint16_t or uint32_t.
LEN
Length of data to be sent, since the SPI peripheral sends from the MSB, this helps to shift the data to the MSB.
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out