|
@@ -1034,7 +1034,11 @@ void setup()
|
|
|
// In the future, somewhere here would one compare the current firmware version against the firmware version stored in the EEPROM.
|
|
|
// If they differ, an update procedure may need to be performed. At the end of this block, the current firmware version
|
|
|
// is being written into the EEPROM, so the update procedure will be triggered only once.
|
|
|
-
|
|
|
+ lang_selected = eeprom_read_byte((uint8_t*)EEPROM_LANG);
|
|
|
+ if (lang_selected >= LANG_NUM){
|
|
|
+ lcd_mylang();
|
|
|
+ }
|
|
|
+
|
|
|
if (eeprom_read_byte((uint8_t*)EEPROM_BABYSTEP_Z_SET) == 0x0ff) {
|
|
|
// Reset the babystepping values, so the printer will not move the Z axis up when the babystepping is enabled.
|
|
|
// eeprom_update_byte((uint8_t*)EEPROM_BABYSTEP_X, 0x0ff);
|