ifdef for mk2
This commit is contained in:
parent
b5168bd6c2
commit
3e9dc91cef
1 changed files with 8 additions and 3 deletions
|
@ -6486,9 +6486,14 @@ static void lcd_main_menu()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
checkFanSpeed(); //Check manually to get most recent fan speed status
|
#ifdef FANCHECK
|
||||||
if(fan_check_error == EFCE_OK)
|
checkFanSpeed(); //Check manually to get most recent fan speed status
|
||||||
MENU_ITEM_SUBMENU_P(_i("Resume print"), lcd_resume_print);////MSG_RESUME_PRINT
|
if(fan_check_error == EFCE_OK)
|
||||||
|
MENU_ITEM_SUBMENU_P(_i("Resume print"), lcd_resume_print);////MSG_RESUME_PRINT
|
||||||
|
#else
|
||||||
|
MENU_ITEM_SUBMENU_P(_i("Resume print"), lcd_resume_print);////MSG_RESUME_PRINT
|
||||||
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
MENU_ITEM_SUBMENU_P(_T(MSG_STOP_PRINT), lcd_sdcard_stop);
|
MENU_ITEM_SUBMENU_P(_T(MSG_STOP_PRINT), lcd_sdcard_stop);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue