Skip to content

Instantly share code, notes, and snippets.

@dagon666
Created October 4, 2013 18:31
Show Gist options
  • Save dagon666/6830466 to your computer and use it in GitHub Desktop.
Save dagon666/6830466 to your computer and use it in GitHub Desktop.
ring buffer
typedef struct _t_buffer {
/// data storage space for the ring buffer
volatile unsigned char ring[SERIAL_RX_RING_SIZE];
/// head index
volatile unsigned char head;
/// tail index
volatile unsigned char tail;
} t_buffer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment