DGUS LCD Library  1
/github/workspace/dgus_config.h
1 /* Configuration */
2 /* timeout in ms */
3 #define SEND_TIMEOUT 200
4 #define ACK_MODE ACK_MODE_OK_WAIT
5 #define RECV_BUFFER_SIZE 32
6 #define SEND_BUFFER_SIZE 32
7 #define DEBUG_PRINT_ENABLED 1
8 
9 //#define DEBUG_PRINTF(...) {}
10 #define DEBUG_PRINTF(...) { printf(__VA_ARGS__); }
11 
12 /* Standard packet header signature */
13 #define HEADER0 0x5A
14 #define HEADER1 0xA5