mirror of
https://github.com/silenty4ng/uv-k5-firmware-chinese-lts
synced 2025-01-26 04:04:24 +00:00
16 lines
312 B
C
16 lines
312 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[] = "LoseHu"VER;
|
||
|
#endif
|