Firmware enhancements for HSP_RPC_GUI 3.0.1

Dependencies:   USBDevice

Fork of HSP_RPC_GUI by Maxim Integrated

Embed: (wiki syntax)

« Back to documentation index

fifo_t Struct Reference

fifo_t Struct Reference

Structure used for FIFO management. More...

#include <RpcFifo.h>

Data Fields

unsigned int length
 FIFO size (number of elements)
void * data
 pointer to the FIFO buffer
unsigned int rindex
 current FIFO read index
unsigned int windex
 current FIFO write index

Detailed Description

Structure used for FIFO management.

Definition at line 40 of file RpcFifo.h.


Field Documentation

void* data

pointer to the FIFO buffer

Definition at line 42 of file RpcFifo.h.

unsigned int length

FIFO size (number of elements)

Definition at line 41 of file RpcFifo.h.

unsigned int rindex

current FIFO read index

Definition at line 43 of file RpcFifo.h.

unsigned int windex

current FIFO write index

Definition at line 44 of file RpcFifo.h.