mirror of
https://gitee.com/lzc56/MiaoUI.git
synced 2025-06-18 13:57:52 +00:00
22 lines
379 B
C
22 lines
379 B
C
![]() |
#ifndef __VERSION_H
|
||
|
#define __VERSION_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/* Firmware Version */
|
||
|
#define VERSION_UI_NAME "MiaoUI"
|
||
|
#define VERSION "v1.2"
|
||
|
#define VERSION_AUTHOR_NAME "JFeng-Z"
|
||
|
#define VERSION_PROJECT_LINK "github.com/JFeng-Z/MiaoUI"
|
||
|
|
||
|
/* Build Time */
|
||
|
#define VERSION_BUILD_TIME __DATE__ "\n" __TIME__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|