1
0
MAX7456JSON/include/config.h
Jens True 2b8b4a048a
All checks were successful
continuous-integration/drone Build is passing
Modernizing code. Bit more OO design than previously.
2021-10-28 11:50:57 +00:00

21 lines
513 B
C

#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 */