12345678910111213141516 |
- #ifndef _KERNEL_VERSION_H_
- #define _KERNEL_VERSION_H_
- #cmakedefine ZEPHYR_VERSION_CODE
- #define ZEPHYR_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
- #define KERNELVERSION
- #define KERNEL_VERSION_NUMBER
- #define KERNEL_VERSION_MAJOR
- #define KERNEL_VERSION_MINOR
- #define KERNEL_PATCHLEVEL
- #define KERNEL_VERSION_STRING
- #endif
|