21 lines
		
	
	
		
			470 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			21 lines
		
	
	
		
			470 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 */
							 |