You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
476 B
21 lines
476 B
/* |
|
* Copyright (c) 1997-2010, 2012-2014 Wind River Systems, Inc. |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include <zephyr/types.h> |
|
#include <zephyr/version.h> /* generated by MAKE, at compile time */ |
|
|
|
/** |
|
* @brief 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". |
|
* |
|
* @return kernel version |
|
*/ |
|
uint32_t sys_kernel_version_get(void) |
|
{ |
|
return KERNELVERSION; |
|
}
|
|
|