uv-k5-firmware-custom/version.c

17 lines
385 B
C
Raw Normal View History

2023-09-09 07:03:56 +00:00
#define ONE_OF_ELEVEN_VER
2023-09-09 12:01:24 +00:00
#ifdef GIT_HASH
2023-09-13 08:20:09 +00:00
#define VER GIT_HASH
2023-09-09 12:01:24 +00:00
#else
#define VER "230929"
2023-09-09 12:01:24 +00:00
#endif
2023-09-13 08:20:09 +00:00
#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-"VER;
const char UART_Version[] = "UV-K5 Firmware, Open Edition, 1o11-"VER"\r\n";
#endif