1 /*! 2 * \file githubVersion.h 3 * 4 * \brief GitHub 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 __GITHUB_VERSION_H__ 21 #define __GITHUB_VERSION_H__ 22 23 #ifdef __cplusplus 24 extern "C" { 25 #endif 26 27 #define GITHUB_VERSION 0x04050000 // 4.5.0.0 28 29 #ifdef __cplusplus 30 } 31 #endif 32 33 #endif // __GITHUB_VERSION_H__ 34