HomeAut
GlobalVariables.h
1 /*
2  * GlobalVariables.h
3  *
4  * Created on: 2016.09.07
5  * Author: Vizi Gábor
6  * E-mail: vizi.gabor90@gmail.com
7  * Function: Global Variables list
8  * Target: STM32Fx
9  * Version: v4
10  * Last modified: 2016.09.28
11  */
12 
13 #ifndef GLOBALVARIABLES_H_
14 #define GLOBALVARIABLES_H_
15 
16 
17 
18 /*------------------------------------------------------------------------------
19  * Global variables
20  *----------------------------------------------------------------------------*/
21 
22 extern const GlobalVarCommand_t GlobalVarList[];
23 extern const VarID_t GlobalVarMaxCommandNum;
24 
25 
26 
27 #endif /* GLOBALVARIABLES_H_ */
GlobalVarCommand structure for set-get global variables.
Definition: GlobalVarHandler.h:94