blob: 26d411d7f71c3de6f72f6f9b1ab19c2125fdb572 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef _APP_VERSION_H_
#define _APP_VERSION_H_
/* values come from cmake/version.cmake
* BUILD_VERSION related values will be 'git describe',
* alternatively user defined BUILD_VERSION.
*/
/* #undef ZEPHYR_VERSION_CODE */
/* #undef ZEPHYR_VERSION */
#define APPVERSION 0x2010000
#define APP_VERSION_NUMBER 0x20100
#define APP_VERSION_MAJOR 2
#define APP_VERSION_MINOR 1
#define APP_PATCHLEVEL 0
#define APP_TWEAK 0
#define APP_VERSION_STRING "2.1.0-dev"
#define APP_VERSION_EXTENDED_STRING "2.1.0-dev+0"
#define APP_VERSION_TWEAK_STRING "2.1.0+0"
#define APP_BUILD_VERSION v2.1.0-ncs1
#endif /* _APP_VERSION_H_ */
|