mirror of
https://github.com/egzumer/uv-k5-firmware-custom
synced 2024-11-21 17:19:57 +00:00
17 lines
397 B
C
17 lines
397 B
C
|
|
#define ONE_OF_ELEVEN_VER
|
|
|
|
#ifdef GIT_HASH
|
|
#define VER GIT_HASH
|
|
#else
|
|
#define VER "231004"
|
|
#endif
|
|
|
|
#ifndef ONE_OF_ELEVEN_VER
|
|
const char Version[] = "OEFW-"VER;
|
|
const char UART_Version[] = "UV-K5 Firmware, Open Edition, OEFW-"VER"\r\n";
|
|
#else
|
|
const char Version[] = "1o11+fagci-"VER;
|
|
const char UART_Version[] = "UV-K5 Firmware, Open Edition, 1o11+fagci-"VER"\r\n";
|
|
#endif
|