#ifndef SW_VER_H_ #define SW_VER_H_ #define MAJOR_VERSION 0 #define MINOR_VERSION 3 #define PATCH_VERSION 19 #define macrostr(s) #s #define VERSION_STRING_BUILDER(major, minor, patch) macrostr(major) "." macrostr(minor) "." macrostr(patch) #define VERSION_STRING VERSION_STRING_BUILDER(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION) const uint8_t* get_sw_ver(void); uint8_t get_sw_ver_len(void); #endif /* SW_VER_H_ */