From a517a9e6ee9e3daf59b5fa90e04472af3f0917e3 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 25 Mar 2023 11:19:05 -0400 Subject: [PATCH] balloon icon for aprs --- main.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index f69d203f..2712ccd9 100644 --- a/main.c +++ b/main.c @@ -936,11 +936,13 @@ void get_tlm(void) { sprintf(header_long, "%08.2f%c", longitude , 'E'); // long else sprintf(header_long, "%08.2f%c", longitude * (-1.0), 'W'); // long + if (ax5043) sprintf(header_str2b, "=%s%c%sShi hi ", header_lat, 0x5c, header_long); // add APRS lat and long else - sprintf(header_str2b, "=%s%c%c%sShi hi ", header_lat, 0x5c, 0x5c, header_long); // add APRS lat and long -// printf("\n\nString is %s \n\n", header_str2b); +// sprintf(header_str2b, "=%s%c%c%sShi hi ", header_lat, 0x5c, 0x5c, header_long); // add APRS lat and long + sprintf(header_str2b, "=%s%c%sOhi hi ", header_lat, 0x2f, header_long); // add APRS lat and long with Balloon + printf("\n\nString is %s \n\n", header_str2b); strcat(str, header_str2b); } else { strcat(str, header_str4);