1
0
MAX7456JSON/include/config.h

21 lines
470 B
C
Raw Permalink Normal View History

2019-01-10 15:42:29 +00:00
#ifndef CONFIG_H
#define CONFIG_H
#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)
#define PROJECT_NAME "MinimOSD-JSON"
#define VERSION_MAJOR 0
#define VERSION_MINOR 1
#define VERSION_BUILD 1
#define VERSION_STRING STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_BUILD)
#define VERSION_DATE __DATE__
#define BAUDRATE 115200
#define DISP_OFFSET_X 49
#define DISP_OFFSET_Y 27
#endif /* CONFIG_H */