ESP-IDF
SPI_SWAP_DATA_RX
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_RX
SPI_SWAP_DATA_RX macro
Transform received data of length <= 32 bits to the format of an unsigned integer. E.g. to transform the data of 15 bits placed in a 4-byte array to integer: uint16_t data = SPI_SWAP_DATA_RX(*(uint32_t*)t->rx_data, 15);
Syntax
Show:
Summary
Declaration
from
spi_common.h:52
#define
SPI_SWAP_DATA_RX
(
DATA
,
LEN
)
(
__builtin_bswap32
(
DATA
)
>
>
(
32
-
(
LEN
)
)
)
Arguments
Argument
Description
DATA
Data to be rearranged, can be uint8_t, uint16_t or uint32_t.
LEN
Length of data received, since the SPI peripheral writes from the MSB, this helps to shift the data to the LSB.
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