Loading...
Searching...
No Matches

Buffer to temporary store incoming/outgoing packet. More...

Detailed Description

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.

Definition at line 490 of file cc110x.h.

#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.
 

Field Documentation

◆ data

uint8_t cc110x_framebuf_t::data[CC110X_MAX_FRAME_SIZE]

The payload data of the frame.

Definition at line 495 of file cc110x.h.

◆ len

uint8_t cc110x_framebuf_t::len

Length of the frame in bytes.

Definition at line 491 of file cc110x.h.

◆ pos

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.

Definition at line 506 of file cc110x.h.


The documentation for this struct was generated from the following file: