From f89718926efd07d12161f794d21659826d1c03fc Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Wed, 24 Aug 2022 20:02:47 -0400 Subject: [PATCH] fixed callsign read --- cubesatsim/cubesatsim.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index fca3c567..2ad8de6f 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -375,7 +375,7 @@ void read_config_file() { sscanf(buff, "%s %d %f %f %s", callsign, & reset_count, & lat_file, & long_file, sim_yes); config_file.close(); - Serial.printf("Config file /sim.cfg contains %s %d %f %f %s\n", call, reset_count, lat_file, long_file, sim_yes); + Serial.printf("Config file /sim.cfg contains %s %d %f %f %s\n", callsign, reset_count, lat_file, long_file, sim_yes); reset_count = (reset_count + 1) % 0xffff;