10 lines
149 B
C
10 lines
149 B
C
|
|
#ifndef _BUFFER_H
|
||
|
|
#define _BUFFER_H
|
||
|
|
#include "LightweightRingBuff.h"
|
||
|
|
|
||
|
|
extern RingBuff_t comms_rx_buffer;
|
||
|
|
extern RingBuff_t comms_tx_buffer;
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|