uv-k5-firmware-chinese-lts/version.c

25 lines
495 B
C
Raw Normal View History

2023-12-24 10:15:10 +00:00
#include "font.h"
2023-12-07 03:39:09 +00:00
#define ONE_OF_ELEVEN_VER
#ifdef GIT_HASH
#define VER GIT_HASH
#else
2023-12-24 10:15:10 +00:00
#if ENABLE_CHINESE_FULL ==0
2023-12-25 05:43:25 +00:00
#define VER "112"
2023-12-24 10:15:10 +00:00
#else
2023-12-25 05:43:25 +00:00
#define VER "112"
2023-12-24 10:15:10 +00:00
#endif
2023-12-07 03:39:09 +00:00
#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
2023-12-25 05:43:25 +00:00
#if ENABLE_CHINESE_FULL ==0
const char Version[] = "LOSEHU"VER;
#else
const char Version[] = "LOSEHU"VER"K";
#endif
2023-12-07 03:39:09 +00:00
#endif