0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 06:39:49 +03:00

Fix version string compile warning

This commit is contained in:
OneOfEleven
2023-10-12 11:13:25 +01:00
parent ec7f30ed96
commit ec11cd84b1
6 changed files with 13 additions and 7 deletions

View File

@ -9,4 +9,6 @@
#define __VER_PREFIX__ "1o11-"
const char Version_str[] = __VER_PREFIX__ __VER__;
const char UART_Version_str[] = "UV-K5 Firmware, Open Edition, " __VER_PREFIX__ __VER__ ", " __DATE__ " " __TIME__;
#if defined(ENABLE_UART)
const char UART_Version_str[] = "UV-K5 Firmware, Open Edition, " __VER_PREFIX__ __VER__ ", " __DATE__ " " __TIME__;
#endif