🎨 Fewer serial macros
This commit is contained in:
committed by
Scott Lahteine
parent
6d96c221bd
commit
b661795ae5
@@ -217,7 +217,7 @@ void menu_advanced_settings();
|
||||
|
||||
#if ENABLED(BLTOUCH_LCD_VOLTAGE_MENU)
|
||||
void bltouch_report() {
|
||||
SERIAL_ECHOLNPAIR("EEPROM Last BLTouch Mode - ", bltouch.last_written_mode);
|
||||
SERIAL_ECHOLNPGM("EEPROM Last BLTouch Mode - ", bltouch.last_written_mode);
|
||||
SERIAL_ECHOLNPGM("Configuration BLTouch Mode - " TERN(BLTOUCH_SET_5V_MODE, "5V", "OD"));
|
||||
char mess[21];
|
||||
strcpy_P(mess, PSTR("BLTouch Mode - "));
|
||||
|
@@ -56,12 +56,12 @@ static bool probe_single_point() {
|
||||
if (reference_index < 0) reference_index = tram_index;
|
||||
move_to_tramming_wait_pos();
|
||||
|
||||
DEBUG_ECHOLNPAIR("probe_single_point(", tram_index, ") = ", z_probed_height, "mm");
|
||||
DEBUG_ECHOLNPGM("probe_single_point(", tram_index, ") = ", z_probed_height, "mm");
|
||||
return (z_isvalid[tram_index] = !isnan(z_probed_height));
|
||||
}
|
||||
|
||||
static void _menu_single_probe() {
|
||||
DEBUG_ECHOLNPAIR("Screen: single probe screen Arg:", tram_index);
|
||||
DEBUG_ECHOLNPGM("Screen: single probe screen Arg:", tram_index);
|
||||
START_MENU();
|
||||
STATIC_ITEM(MSG_BED_TRAMMING, SS_LEFT);
|
||||
STATIC_ITEM(MSG_LAST_VALUE_SP, SS_LEFT, z_isvalid[tram_index] ? ftostr42_52(z_measured[reference_index] - z_measured[tram_index]) : "---");
|
||||
@@ -87,7 +87,7 @@ static void tramming_wizard_menu() {
|
||||
|
||||
// Init the wizard and enter the submenu
|
||||
void goto_tramming_wizard() {
|
||||
DEBUG_ECHOLNPAIR("Screen: goto_tramming_wizard", 1);
|
||||
DEBUG_ECHOLNPGM("Screen: goto_tramming_wizard", 1);
|
||||
ui.defer_status_screen();
|
||||
|
||||
// Initialize measured point flags
|
||||
|
Reference in New Issue
Block a user