From ef6e9c37797b67629d0e1a4c4704b927a68f75e0 Mon Sep 17 00:00:00 2001 From: anschrammh Date: Sun, 26 Mar 2023 23:25:35 +0200 Subject: [PATCH] Added new firmware_version.h file which will list all the changes with their associated version number. It also containes the firmware build time and date --- src/lvgl_win_sim/lv_port_win_codeblocks/firmware_version.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/lvgl_win_sim/lv_port_win_codeblocks/firmware_version.h diff --git a/src/lvgl_win_sim/lv_port_win_codeblocks/firmware_version.h b/src/lvgl_win_sim/lv_port_win_codeblocks/firmware_version.h new file mode 100644 index 0000000..63a9047 --- /dev/null +++ b/src/lvgl_win_sim/lv_port_win_codeblocks/firmware_version.h @@ -0,0 +1,7 @@ +#ifndef FIRMWARE_VERSION_H +#define FIRMWARE_VERSION_H + +#define FIRMWARE_VERSION "0.0.1" //Firmware creation +#define FIRMWARE_TIME_DATE (__TIME__" "__DATE__) + +#endif //FIRMWARE_VERSION_H