Modified version info...
to see differences to stock version. Behind the version info 3 letters can be used, i have chosen to use that to identify 3 projects: - 'H'yperfine Tuning as 1st project and 1st letter - 'F'ilament Runout Sensor as 2nd project and 2nd letter - 'M'ulti Languages as 3rd project and 3rd letter As i merge one or all projects in one version the result will be <stock version info><1st project><2nd project><3rd project> Example: Having all 3 projects together the actual firmware version will be shown as 'FW - 3.1.0-RC2HFM' Also added time and author to the support view.
This commit is contained in:
parent
0d9f95bd35
commit
2a2a3999f8
|
|
@ -5,7 +5,7 @@
|
|||
#include "Configuration_prusa.h"
|
||||
|
||||
// Firmware version
|
||||
#define FW_version "3.1.0-RC2"
|
||||
#define FW_version "3.1.0-RC2 F "
|
||||
|
||||
#define FW_PRUSA3D_MAGIC "PRUSA3DFW"
|
||||
#define FW_PRUSA3D_MAGIC_LEN 10
|
||||
|
|
|
|||
|
|
@ -1484,6 +1484,8 @@ static void lcd_support_menu()
|
|||
MENU_ITEM(back, PSTR("------------"), lcd_main_menu);
|
||||
MENU_ITEM(back, MSG_DATE, lcd_main_menu);
|
||||
MENU_ITEM(back, PSTR(__DATE__), lcd_main_menu);
|
||||
MENU_ITEM(back, PSTR(__TIME__), lcd_main_menu);
|
||||
MENU_ITEM(back, PSTR(STRING_CONFIG_H_AUTHOR), lcd_main_menu);
|
||||
|
||||
// Show the FlashAir IP address, if the card is available.
|
||||
if (menuData.supportMenu.is_flash_air) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue