From be40eed27cc50b59b91ccbc25695b8445377d7bc Mon Sep 17 00:00:00 2001 From: root Date: Thu, 1 Jan 1970 09:13:28 +0900 Subject: more compact messaging during self-cal --- device-functions.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/device-functions.c b/device-functions.c index bac45da..87c2bb4 100644 --- a/device-functions.c +++ b/device-functions.c @@ -3829,15 +3829,12 @@ int do_full_self_cal(CalStruct *caldata) caldata->response = g_string_new (""); Menu_Clear_Buttons(); - LCD_clear(); /*0123456789012345678901234567890123456789*/ - LCD_write(0,0,"Self-calibration in progress."); - /*0123456789012345678901234567890123456789*/ - string = g_strdup_printf ("Typical run time: %d min, %d sec.", globals.Flash.self_cal_typical_time_min, globals.Flash.self_cal_typical_time_sec); - LCD_write(1,0,string); + string = g_strdup_printf ("Self-calibration in progress - typical run time: %d min, %d sec. To skip, power off 60 sec, then power back on.", + globals.Flash.self_cal_typical_time_min, + globals.Flash.self_cal_typical_time_sec); + LCD_display_extended_message (string, FALSE, FALSE); g_free (string); - /*0123456789012345678901234567890123456789*/ - LCD_write(2,0,"To skip, power off 60sec, then power on."); while ((sec_timer() - globals.Timers.startup_timer_value) < (long)globals.Flash.self_cal_pause) { /*0123456789012345678901234567890123456789*/ -- cgit