From e6f352a5430bd7fd35494c063e79b61e4463a363 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sun, 19 Feb 2023 11:02:48 -0500 Subject: [PATCH] transmit full APRS packet --- cubesatsim/cubesatsim.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 4cffd052..1f313d08 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -476,8 +476,8 @@ void send_aprs_packet() { char str[1000]; char header_str[] = "hi hi "; strcpy(str, header_str); -// strcpy(str, tlm_str); // transmit short APRS packet with just lat lon -// strcat(str, payload_str); + strcpy(str, tlm_str); // transmit full APRS packet + strcat(str, payload_str); // print_string(str); // Serial.println(strlen(str));