]> rtime.felk.cvut.cz Git - rtems-devel.git/blob - rtems-omk-template/system_opt/system_def.h
Template application updated to build for RTEMS 4.9.x environment.
[rtems-devel.git] / rtems-omk-template / system_opt / system_def.h
1 #ifndef _SYSTEM_DEF_H_
2 #define _SYSTEM_DEF_H_
3
4 #include <inttypes.h>
5
6 #define VER_CODE(major,minor,patch) (major*0x10000+minor*0x100+patch)
7 /* Software version */
8 #define SW_VER_ID       "APPFOO"
9 #define SW_VER_MAJOR    0
10 #define SW_VER_MINOR    1
11 #define SW_VER_PATCH    0
12 #define SW_VER_CODE     VER_CODE(SW_VER_MAJOR,SW_VER_MINOR,SW_VER_PATCH)
13 /* Hardware version */
14 #define HW_VER_ID       "SOMEBOARD"
15 #define HW_VER_MAJOR    0
16 #define HW_VER_MINOR    1
17 #define HW_VER_PATCH    0
18 #define HW_VER_CODE     VER_CODE(HW_VER_MAJOR,HW_VER_MINOR,HW_VER_PATCH)
19 /* Version of mechanical  */
20 #define MECH_VER_ID     "SOMESTUFF"
21 #define MECH_VER_MAJOR  0
22 #define MECH_VER_MINOR  1
23 #define MECH_VER_PATCH  0
24 #define MECH_VER_CODE   VER_CODE(MECH_VER_MAJOR,MECH_VER_MINOR,MECH_VER_PATCH)
25
26 #endif /* _SYSTEM_DEF_H_ */