2020-2021 Sunseeker Telemetry and Lighting System
version.h
Go to the documentation of this file.
1 #ifndef __DRIVERLIB_VERSION__
2  #define DRIVERLIB_VER_MAJOR 2
3  #define DRIVERLIB_VER_MINOR 91
4  #define DRIVERLIB_VER_PATCH 13
5  #define DRIVERLIB_VER_BUILD 01
6 #endif
7 
8 #define getVersion() ((uint32_t)DRIVERLIB_VER_MAJOR<<24 | \
9  (uint32_t)DRIVERLIB_VER_MINOR<<16 | \
10  (uint32_t)DRIVERLIB_VER_PATCH<<8 | \
11  (uint32_t)DRIVERLIB_VER_BUILD)