acc_version.h
Go to the documentation of this file.
1 // Copyright (c) Acconeer AB, 2019-2023
2 // All rights reserved
3 
4 #ifndef ACC_VERSION_H_
5 #define ACC_VERSION_H_
6 
7 #include <stdint.h>
8 
9 /**
10  * @brief Get the version of the Acconeer software
11  *
12  * @return A string describing the software version.
13  */
14 const char *acc_version_get(void);
15 
16 
17 /**
18  * @brief Get the version of the Acconeer software as a hex number
19  *
20  * @return An uint32 number, 0xMMMMmmPP where M is major, m is minor and P is patch
21  */
22 uint32_t acc_version_get_hex(void);
23 
24 
25 #endif
acc_version_get_hex
uint32_t acc_version_get_hex(void)
Get the version of the Acconeer software as a hex number.
acc_version_get
const char * acc_version_get(void)
Get the version of the Acconeer software.