From 5624cb532a7848703a166b4875a759f124f68c30 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 18 Mar 2023 22:28:32 -0400 Subject: [PATCH] 200ms of carrier before and after --- cubesatsim/cubesatsim.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 3fa1ca77..1e6467c6 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -521,9 +521,9 @@ void send_aprs_packet() { Serial.println("Sending APRS packet!"); transmit_on(); transmit_led(HIGH); - sleep(0.1); + sleep(0.2); send_packet(_FIXPOS_STATUS, debug_mode); - sleep(0.1); + sleep(0.2); transmit_led(LOW); transmit_off(); }