Loading [MathJax]/extensions/tex2jax.js
AFBR-S50 API Reference Manual
v1.6.5
AFBR-S50 Time-of-Flight Sensor SDK for Embedded Software
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
k
l
n
o
p
r
s
t
u
v
w
x
Variables
a
b
c
d
e
f
g
h
i
k
l
n
o
p
r
s
t
u
v
w
x
Files
File List
Globals
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
x
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
x
Variables
c
d
e
f
g
h
i
l
m
o
q
r
s
t
Typedefs
h
m
q
s
t
u
Enumerations
Enumerator
a
b
c
d
e
l
m
p
s
t
u
Macros
a
c
d
e
f
h
i
m
n
o
p
q
r
s
t
u
x
Examples
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
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 6
57
59
#define EXPLORER_VERSION_BUGFIX 5
60
62
#define EXPLORER_VERSION_BUILD "20250213103358"
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
explorer_app
core
explorer_version.h
Broadcom Inc.