AFBR-S50 API Reference Manual
v1.5.6
AFBR-S50 Time-of-Flight Sensor SDK for Embedded Software
Loading...
Searching...
No Matches
explorer_version.h
Go to the documentation of this file.
1
/*************************************************************************/
37
#ifndef EXPLORER_VERSION_H
38
#define EXPLORER_VERSION_H
39
40
/*!***************************************************************************
41
* @defgroup explorer_version Explorer Version
42
* @ingroup explorer_app
43
*
44
* @brief Explorer Application Code Version.
45
*
46
* @details Provides a version number for Explorer Application.
47
*
48
* @addtogroup explorer_version
49
* @{
50
*****************************************************************************/
51
53
#define EXPLORER_VERSION_MAJOR 1
54
56
#define EXPLORER_VERSION_MINOR 5
57
59
#define EXPLORER_VERSION_BUGFIX 6
60
62
#define EXPLORER_VERSION_BUILD "20240208081753"
63
64
/*****************************************************************************/
65
67
#define MAKE_VERSION(major, minor, bugfix) \
68
(((major) << 24) | ((minor) << 16) | (bugfix))
69
71
#define EXPLORER_VERSION MAKE_VERSION((EXPLORER_VERSION_MAJOR), \
72
(EXPLORER_VERSION_MINOR), \
73
(EXPLORER_VERSION_BUGFIX))
74
76
#endif
/* EXPLORER_VERSION_H */
Sources
ExplorerApp
core
explorer_version.h
Broadcom Inc.