|
@@ -3579,18 +3579,14 @@ int8_t lcd_show_multiscreen_message_two_choices_and_wait_P(const char *msg, bool
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-int8_t lcd_show_fullscreen_message_yes_no_and_wait_P(const char *msg, bool allow_timeouting, bool default_yes)
|
|
|
+int8_t lcd_show_yes_no_and_wait(bool allow_timeouting, bool default_yes)
|
|
|
{
|
|
|
-
|
|
|
- lcd_display_message_fullscreen_P(msg);
|
|
|
-
|
|
|
if (default_yes) {
|
|
|
lcd_putc_at(0, 2, '>');
|
|
|
lcd_puts_P(_T(MSG_YES));
|
|
@@ -3643,6 +3639,20 @@ int8_t lcd_show_fullscreen_message_yes_no_and_wait_P(const char *msg, bool allow
|
|
|
return retval;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+int8_t lcd_show_fullscreen_message_yes_no_and_wait_P(const char *msg, bool allow_timeouting, bool default_yes)
|
|
|
+{
|
|
|
+ lcd_display_message_fullscreen_P(msg);
|
|
|
+ return lcd_show_yes_no_and_wait(allow_timeouting, default_yes);
|
|
|
+}
|
|
|
+
|
|
|
void lcd_bed_calibration_show_result(BedSkewOffsetDetectionResultType result, uint8_t point_too_far_mask)
|
|
|
{
|
|
|
const char *msg = NULL;
|