0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-28 06:11:24 +03:00

17 lines
401 B
C
Raw Normal View History

2023-09-09 08:03:56 +01:00
#define ONE_OF_ELEVEN_VER
2023-09-09 13:01:24 +01:00
#ifdef GIT_HASH
2023-09-13 09:20:09 +01:00
#define VER GIT_HASH
2023-09-09 13:01:24 +01:00
#else
2023-10-11 18:32:10 +01:00
#define VER "231012"
2023-09-09 13:01:24 +01:00
#endif
2023-09-13 09:20:09 +01:00
#ifndef ONE_OF_ELEVEN_VER
const char Version_str[] = "OEFW-"VER;
const char UART_Version_str[] = "UV-K5 Firmware, Open Edition, OEFW-"VER"\r\n";
#else
const char Version_str[] = "1o11-"VER;
const char UART_Version_str[] = "UV-K5 Firmware, Open Edition, 1o11-"VER"\r\n";
#endif