Zephyr API 3.6.99
|
The kernel version has been converted from a string to a four-byte quantity that is divided into two parts. More...
Macros | |
#define | SYS_KERNEL_VER_MAJOR(ver) |
#define | SYS_KERNEL_VER_MINOR(ver) |
#define | SYS_KERNEL_VER_PATCHLEVEL(ver) |
Functions | |
uint32_t | sys_kernel_version_get (void) |
Return the kernel version of the present build. | |
The kernel version has been converted from a string to a four-byte quantity that is divided into two parts.
Part 1: The three most significant bytes represent the kernel's numeric version, x.y.z. These fields denote: x – major release y – minor release z – patchlevel release Each of these elements must therefore be in the range 0 to 255, inclusive.
Part 2: The least significant byte is reserved for future use.
#define SYS_KERNEL_VER_MAJOR | ( | ver | ) |
#include <zephyr/kernel_version.h>
#define SYS_KERNEL_VER_MINOR | ( | ver | ) |
#include <zephyr/kernel_version.h>
#define SYS_KERNEL_VER_PATCHLEVEL | ( | ver | ) |
#include <zephyr/kernel_version.h>
uint32_t sys_kernel_version_get | ( | void | ) |
#include <zephyr/kernel_version.h>
Return the kernel version of the present build.
The kernel version is a four-byte value, whose format is described in the file "kernel_version.h".