17 lines
475 B
C
17 lines
475 B
C
|
|
#ifdef VERSION_STRING
|
|
#define VER " "VERSION_STRING
|
|
#else
|
|
#define VER ""
|
|
#endif
|
|
|
|
#ifdef ENABLE_FEAT_F4HWN
|
|
const char Version[] = AUTHOR_STRING_2 " " VERSION_STRING_2;
|
|
const char Credits[] = AUTHOR_STRING_1 " " VERSION_STRING_1;
|
|
const char Feat[] = "Feat " AUTHOR_STRING_2 " " VERSION_STRING_2;
|
|
#else
|
|
const char Version[] = AUTHOR_STRING VER;
|
|
#endif
|
|
|
|
const char UART_Version[] = "UV-K5 Firmware, Open Edition, " AUTHOR_STRING VER "\r\n";
|