HomeAut
Globals.h
1 /*
2  * Globals.h
3  *
4  * Created on: 2016.09.15
5  * Author: Vizi Gábor
6  * E-mail: vizi.gabor90@gmail.com
7  * Function: Globals
8  * Target: STM32Fx
9  * Version: v4
10  * Last modified: 2016.09.28
11  */
12 
13 #ifndef GLOBALS_H_
14 #define GLOBALS_H_
15 
16 
17 
18 /*------------------------------------------------------------------------------
19  * Global variables
20  *----------------------------------------------------------------------------*/
21 
22 extern const char Global_BoardName[];
23 extern const char Global_Version[];
24 
25 
26 
27 /*------------------------------------------------------------------------------
28  * Global function declarations
29  *----------------------------------------------------------------------------*/
30 
31 void DelayMs(uint32_t ms);
32 void Error_Handler(void);
33 
34 
35 #endif /* GLOBALS_H_ */