-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild_version.h
More file actions
34 lines (26 loc) · 855 Bytes
/
build_version.h
File metadata and controls
34 lines (26 loc) · 855 Bytes
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
26
27
28
29
30
31
32
33
34
/**
* Copyright (c) Riven Zheng ([email protected]).
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
**/
#ifndef _BUILD_VERSION_H_
#define _BUILD_VERSION_H_
#ifdef __cplusplus
extern "C" {
#endif
#define ATOS_BUILD_TIME "2025-03-02,05:55"
#define ATOS_COMMIT_HEAD_ID "126a75a58379f731c8df8c3a51aceae81ca308b7"
#define ATOS_VERSION_MAJOR_NUMBER (2u)
#define ATOS_VERSION_MINOR_NUMBER (1u)
#define ATOS_VERSION_PATCH_NUMBER (0u)
#define ATOS_VERSION_MAJOR_NUMBER_MASK (0x03FFu)
#define ATOS_VERSION_MAJOR_NUMBER_POS (22u)
#define ATOS_VERSION_MINOR_NUMBER_MASK (0x03FFu)
#define ATOS_VERSION_MINOR_NUMBER_POS (10u)
#define ATOS_VERSION_PATCH_NUMBER_MASK (0x0FFFu)
#define ATOS_VERSION_PATCH_NUMBER_POS (0u)
#ifdef __cplusplus
}
#endif
#endif