Merge pull request #52 from PavelSindler/MK2
farm number in main menu during print
This commit is contained in:
commit
6d8f0d1749
2 changed files with 5 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
#include "Configuration_prusa.h"
|
||||
|
||||
// Firmware version
|
||||
#define FW_version "3.0.10-1"
|
||||
#define FW_version "3.0.10-2"
|
||||
|
||||
#define FW_PRUSA3D_MAGIC "PRUSA3DFW"
|
||||
#define FW_PRUSA3D_MAGIC_LEN 10
|
||||
|
|
|
@ -3165,6 +3165,10 @@ static void lcd_main_menu()
|
|||
|
||||
if (IS_SD_PRINTING || is_usb_printing)
|
||||
{
|
||||
if (farm_mode)
|
||||
{
|
||||
MENU_ITEM(submenu, PSTR("Farm number"), lcd_farm_no);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue