From 14f82893c918d224f28a79211840a5523684fedc Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Tue, 11 Jun 2024 16:26:16 -0700 Subject: [PATCH] altos/telelco-v3.0: Swap version and serial on info page Rationale is that model and sn are part of the hardware, version is fw, call and freq are config. Signed-off-by: Keith Packard --- src/telelco-v3.0/ao_lco_v3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/telelco-v3.0/ao_lco_v3.c b/src/telelco-v3.0/ao_lco_v3.c index 8c451e21..96aa8159 100644 --- a/src/telelco-v3.0/ao_lco_v3.c +++ b/src/telelco-v3.0/ao_lco_v3.c @@ -201,8 +201,8 @@ _ao_lco_show_info(void) info_y = INFO_START_Y; ao_logo_poly(&fb, &show_transform, AO_BLACK, AO_COPY); _ao_lco_info("%s", ao_product); - _ao_lco_info("Version: %s", ao_version); _ao_lco_info("Serial: %d", ao_serial_number); + _ao_lco_info("Version: %s", ao_version); _ao_lco_info("Callsign: %s", ao_config.callsign); _ao_lco_info("Frequency: %ld.%03d", ao_config.frequency / 1000, -- 2.47.2