Files
brnQuanFW/version.c
Bruno Rybársky f4ff2e6048
Some checks failed
Build Firmware / build (push) Failing after 3m21s
Apply my changes v1
2025-02-27 16:49:04 +01:00

15 lines
331 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;
#else
const char Version[] = AUTHOR_STRING VER;
#endif
const char UART_Version[] = "UV-K5 Firmware, " AUTHOR_STRING VER "\r\n";