mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-24 08:56:03 +00:00
This is a start to move away from the C99 {u}int{8,16,32,64}_t types to Zephyr defined u{8,16,32,64}_t and s{8,16,32,64}_t. This allows Zephyr to define the sized types in a consistent manor across all the architectures we support and not conflict with what various compilers and libc might do with regards to the C99 types. We introduce <zephyr/types.h> as part of this and have it include <stdint.h> for now until we transition all the code away from the C99 types. We go with u{8,16,32,64}_t and s{8,16,32,64}_t as there are some existing variables defined u8 & u16 as well as to be consistent with Zephyr naming conventions. Jira: ZEP-2051 Change-Id: I451fed0623b029d65866622e478225dfab2c0ca8 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
27 lines
539 B
C
27 lines
539 B
C
/* version.c */
|
|
|
|
/*
|
|
* Copyright (c) 1997-2010, 2012-2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/types.h>
|
|
#include "version.h" /* generated by MAKE, at compile time */
|
|
|
|
static uint32_t kernel_version = KERNELVERSION;
|
|
|
|
/**
|
|
*
|
|
* @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 kernel_version;
|
|
}
|