See Stack Information for documentation.
License#
Copyright 2018 Silicon Laboratories Inc. www.silabs.com
The licensor of this software is Silicon Laboratories Inc. Your use of this software is governed by the terms of Silicon Labs Master Software License Agreement (MSLA) available at www.silabs.com/about-us/legal/master-software-license-agreement. This software is distributed to you in Source Code format and is governed by the sections of the MSLA applicable to Source Code.
/***************************************************************************/
#ifndef SILABS_CONFIG_CONFIG_H
#define SILABS_CONFIG_CONFIG_H
// The 4 digit version: A.B.C.D
#define EMBER_MAJOR_VERSION 7
#define EMBER_MINOR_VERSION 4
#define EMBER_PATCH_VERSION 5
#define EMBER_SPECIAL_VERSION 0
// 2 bytes
#define EMBER_BUILD_NUMBER 0
#define EMBER_FULL_VERSION ( ((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_VERSION_TYPE EMBER_VERSION_TYPE_GA
#define SOFTWARE_VERSION EMBER_FULL_VERSION
#endif // SILABS_CONFIG_CONFIG_H
Macros#
#define
EMBER_MAJOR_VERSION 7
#define
EMBER_MINOR_VERSION 4
#define
EMBER_PATCH_VERSION 5
#define
EMBER_SPECIAL_VERSION 0
#define
EMBER_BUILD_NUMBER 0
#define
EMBER_FULL_VERSION undefined
#define
EMBER_VERSION_TYPE EMBER_VERSION_TYPE_GA
#define
SOFTWARE_VERSION EMBER_FULL_VERSION