mirror of
https://github.com/adrcs/ip400.git
synced 2025-04-22 03:23:43 +03:00
19 lines
419 B
C
19 lines
419 B
C
/*
|
|
* streambuffer.h
|
|
*
|
|
* Created on: Jan 11, 2025
|
|
* Author: MartinA
|
|
*/
|
|
|
|
#ifndef INC_STREAMBUFFER_H_
|
|
#define INC_STREAMBUFFER_H_
|
|
|
|
// data buffer defs
|
|
typedef uint8_t DATA_ELEMENT; // data element
|
|
#define BUFFER_EMPTY(x) (x.nDataBytes == 0)
|
|
#define BUFFER_NO_DATA 0
|
|
#define bufferSIZE 512 // large buffer
|
|
|
|
|
|
#endif /* INC_STREAMBUFFER_H_ */
|