|
@@ -5753,14 +5753,14 @@ void lcd_hw_setup_menu(void) // can not be "static"
|
|
|
MENU_ITEM_SUBMENU_P(PSTR("Experimental"), lcd_experimental_menu);////MSG_MENU_EXPERIMENTAL c=18
|
|
|
}
|
|
|
|
|
|
-#ifdef SUPERPINDA_SUPPORT
|
|
|
+#ifdef PINDA_TEMP_COMP
|
|
|
//! The SuperPINDA is detected when the PINDA temp is below its defined limit.
|
|
|
//! This works well on the EINSY board but not on the miniRAMBo board as
|
|
|
//! as a disconnected SuperPINDA will show higher temps compared to an EINSY board.
|
|
|
//!
|
|
|
//! This menu allows the user to en-/disable the SuperPINDA manualy
|
|
|
MENU_ITEM_TOGGLE_P(_N("SuperPINDA"), eeprom_read_byte((unsigned char *)EEPROM_PINDA_TEMP_COMPENSATION) ? _T(MSG_YES) : _T(MSG_NO), lcd_pinda_temp_compensation_toggle);
|
|
|
-#endif //SUPERPINDA_SUPPORT
|
|
|
+#endif //PINDA_TEMP_COMP
|
|
|
|
|
|
MENU_END();
|
|
|
}
|
|
@@ -9245,6 +9245,7 @@ void lcd_experimental_menu()
|
|
|
MENU_END();
|
|
|
}
|
|
|
|
|
|
+#ifdef PINDA_TEMP_COMP
|
|
|
void lcd_pinda_temp_compensation_toggle()
|
|
|
{
|
|
|
uint8_t pinda_temp_compensation = eeprom_read_byte((uint8_t*)EEPROM_PINDA_TEMP_COMPENSATION);
|
|
@@ -9253,6 +9254,7 @@ void lcd_pinda_temp_compensation_toggle()
|
|
|
else
|
|
|
pinda_temp_compensation = !pinda_temp_compensation;
|
|
|
eeprom_update_byte((uint8_t*)EEPROM_PINDA_TEMP_COMPENSATION, pinda_temp_compensation);
|
|
|
- SERIAL_ECHOLNPGM("LCD U SuperPINDA:");
|
|
|
+ SERIAL_ECHOLNPGM("SuperPINDA:");
|
|
|
SERIAL_ECHOLN(pinda_temp_compensation);
|
|
|
}
|
|
|
+#endif //PINDA_TEMP_COMP
|