From 9895774f386187d91bb5ea6d13fb2b248addb559 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sun, 19 Feb 2023 10:31:04 -0500 Subject: [PATCH] v0.38, other minor edits --- cubesatsim/cubesatsim.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 95c1e086..4cffd052 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -102,7 +102,7 @@ void setup() { // otherwise, run CubeSatSim Pico code - Serial.println("CubeSatSim Pico v0.36 starting...\n"); + Serial.println("CubeSatSim Pico v0.38 starting...\n"); /**/ if (check_for_wifi()) { @@ -421,7 +421,7 @@ void read_config_file() { reset_count = (reset_count + 1) % 0xffff; if ((fabs(lat_file) > 0) && (fabs(lat_file) < 90.0) && (fabs(long_file) > 0) && (fabs(long_file) < 180.0)) { - Serial.println("Valid latitude and longitude in config file"); + Serial.println("Valid latitude and longitude in config file\n"); // convert to APRS DDMM.MM format latitude = lat_file; // toAprsFormat(lat_file); longitude = long_file; // toAprsFormat(long_file);