Buffer to temporary store incoming/outgoing packet. More...
Buffer to temporary store incoming/outgoing packet.
The CC1100/CC1101 transceiver's FIFO sadly is only 64 bytes in size. To support frames bigger than that, chunks of the frame have to be transferred between the MCU and the CC1100/CC1101 transceiver while the frame is in transit.
#include <cc110x.h>
Data Fields | |
uint8_t | len |
Length of the frame in bytes. | |
uint8_t | data [CC110X_MAX_FRAME_SIZE] |
The payload data of the frame. | |
uint8_t | pos |
Index of the next cc110x_framebuf_t::data element to transfer. More... | |
uint8_t cc110x_framebuf_t::pos |
Index of the next cc110x_framebuf_t::data element to transfer.
In RX mode: Index of the next cc110x_framebuf_t::data element to store data read from the RX-FIFO into.
In TX mode: Index of the next cc110x_framebuf_t::data element to write to the TX-FIFO.