1 /*! 2 * \file firmwareVersion.h 3 * 4 * \brief Firmware version definition 5 * 6 * \copyright Revised BSD License, see file LICENSE.txt 7 * 8 * \code 9 * ______ _ 10 * / _____) _ | | 11 * ( (____ _____ ____ _| |_ _____ ____| |__ 12 * \____ \| ___ | (_ _) ___ |/ ___) _ \ 13 * _____) ) ____| | | || |_| ____( (___| | | | 14 * (______/|_____)_|_|_| \__)_____)\____)_| |_| 15 * (C)2019-2020 Semtech 16 * 17 * \endcode 18 */ 19 20 #ifndef __FIRMWARE_VERSION_H__ 21 #define __FIRMWARE_VERSION_H__ 22 23 #ifdef __cplusplus 24 extern "C" { 25 #endif 26 27 #define FIRMWARE_VERSION 0x01020000 // 1.2.0.0 28 29 #ifdef __cplusplus 30 } 31 #endif 32 33 #endif // __FIRMWARE_VERSION_H__ 34