Connect Stack Version

Macros to determine the stack version. More...

Macros

#define EMBER_MAJOR_VERSION   4
 The major version of the release. First digit of A.B.C.D. More...
 
#define EMBER_MINOR_VERSION   0
 The minor version of the release. Second digit of A.B.C.D. More...
 
#define EMBER_PATCH_VERSION   1
 The patch version of the release. Third digit of A.B.C.D. More...
 
#define EMBER_SPECIAL_VERSION   0
 Special version of the release. Fourth digit of A.B.C.D. More...
 
#define EMBER_BUILD_NUMBER   108
 Build number of the release. Should be stored on 2 bytes. More...
 
#define EMBER_FULL_VERSION
 Full version number stored on 2 bytes, with each of the four digits stored on 4 bits. More...
 
#define EMBER_VERSION_TYPE   EMBER_VERSION_TYPE_GA
 Version type of the release. EMBER_VERSION_TYPE_GA means generally available. More...
 
#define SOFTWARE_VERSION   EMBER_FULL_VERSION
 

Detailed Description

Macros to determine the stack version.

Note that the Connect Stack version might not match the version of Flex SDK.

See config.h for source code.

Macro Definition Documentation

◆ EMBER_BUILD_NUMBER

#define EMBER_BUILD_NUMBER   108

Build number of the release. Should be stored on 2 bytes.

Definition at line 66 of file config.h.

◆ EMBER_FULL_VERSION

#define EMBER_FULL_VERSION
Value:
( ((uint16_t)EMBER_MAJOR_VERSION << 12) \
| ((uint16_t)EMBER_MINOR_VERSION << 8) \
| ((uint16_t)EMBER_PATCH_VERSION << 4) \
| ((uint16_t)EMBER_SPECIAL_VERSION))
#define EMBER_SPECIAL_VERSION
Special version of the release. Fourth digit of A.B.C.D.
Definition: config.h:61
#define EMBER_MINOR_VERSION
The minor version of the release. Second digit of A.B.C.D.
Definition: config.h:48
#define EMBER_PATCH_VERSION
The patch version of the release. Third digit of A.B.C.D.
Definition: config.h:56
#define EMBER_MAJOR_VERSION
The major version of the release. First digit of A.B.C.D.
Definition: config.h:43

Full version number stored on 2 bytes, with each of the four digits stored on 4 bits.

Definition at line 72 of file config.h.

◆ EMBER_MAJOR_VERSION

#define EMBER_MAJOR_VERSION   4

The major version of the release. First digit of A.B.C.D.

Definition at line 43 of file config.h.

◆ EMBER_MINOR_VERSION

#define EMBER_MINOR_VERSION   0

The minor version of the release. Second digit of A.B.C.D.

Definition at line 48 of file config.h.

◆ EMBER_PATCH_VERSION

#define EMBER_PATCH_VERSION   1

The patch version of the release. Third digit of A.B.C.D.

Patch versions are fully backwards compatible as long as the major and minor version matches.

Definition at line 56 of file config.h.

◆ EMBER_SPECIAL_VERSION

#define EMBER_SPECIAL_VERSION   0

Special version of the release. Fourth digit of A.B.C.D.

Definition at line 61 of file config.h.

◆ EMBER_VERSION_TYPE

#define EMBER_VERSION_TYPE   EMBER_VERSION_TYPE_GA

Version type of the release. EMBER_VERSION_TYPE_GA means generally available.

Definition at line 81 of file config.h.

◆ SOFTWARE_VERSION

#define SOFTWARE_VERSION   EMBER_FULL_VERSION

Full version number stored on 2 bytes, with each of the four digits stored on 4 bits.

Definition at line 86 of file config.h.