diff options
author | root <root@avtech.domain.avtechpulse.com> | 1970-01-01 09:13:28 +0900 |
---|---|---|
committer | root <root@avtech.domain.avtechpulse.com> | 1970-01-01 09:13:28 +0900 |
commit | be40eed27cc50b59b91ccbc25695b8445377d7bc (patch) | |
tree | b1bab7f321e60f54c8c5513307cb4349975eac63 /device-functions.c | |
parent | 42ecc3dde6d129f3c972f12a1ae781ef71c151db (diff) |
more compact messaging during self-calINSTRUMENT_6_0_7
Diffstat (limited to 'device-functions.c')
-rw-r--r-- | device-functions.c | 11 |
1 files 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*/ |