diff options
author | root <root@avtech.domain.avtechpulse.com> | 1970-01-01 09:14:14 +0900 |
---|---|---|
committer | root <root@avtech.domain.avtechpulse.com> | 1970-01-01 09:14:14 +0900 |
commit | 347f3f886ea54470f340def6a7af981f5845cc01 (patch) | |
tree | ee0b53caff48b05e0b18af074daa1a0c33dc38c4 /menus.c | |
parent | f4bf2894fa2e1b05958f0828d932e9068bc9b828 (diff) |
Allow 64-char model numbersINSTRUMENT_6_0_10
Diffstat (limited to 'menus.c')
-rw-r--r-- | menus.c | 22 |
1 files changed, 6 insertions, 16 deletions
@@ -2729,22 +2729,12 @@ static void Nonstd_menu_default_rs232(void) static void Nonstd_menu_model_info(void) { - gchar *response; - - LCD_clear(); - - /*0123456789012345678901234567890123456789*/ - LCD_write(0,0,"Avtech Electrosystems Ltd. - since 1975"); - LCD_write(1,0,"Visit us at www.avtechpulse.com!"); - - LCD_write(2,0,"Model: "); - LCD_write(2,7,globals.Flash.model_num); - - response = g_strdup_printf ("SN:%s,v%s", globals.Flash.serial_num, FW_VERSION); - LCD_write(3,0,response); - g_free (response); - - LCD_write(3,27,"Press CHANGE."); + gchar *message = g_strdup_printf ("Avtech Electrosystems Ltd., since 1975. Model %s, S/N %s, FW v%s.", + globals.Flash.model_num, + globals.Flash.serial_num, + FW_VERSION); + LCD_display_extended_message (message, TRUE, FALSE); + g_free (message); globals.MenuStatus.Nonstd_Display=YES; } |