From 122d5ea64ba9dffaac185df10ea0f87fa5b4e7d7 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Mon, 22 Aug 2022 16:18:06 -0400 Subject: [PATCH] missing } at end --- cubesatsim/cubesatsim.ino | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index bc164f76..6a20ad01 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -4077,8 +4077,8 @@ void set_lat_lon() { void program_radio() { - DumbTXSWS mySerial(SWTX_PIN); // TX pin - mySerial.begin(9600); + DumbTXSWS mySerial(SWTX_PIN); // TX pin + mySerial.begin(9600); for (int i = 0; i < 5; i++) { sleep(0.5); // delay(500); @@ -4089,4 +4089,5 @@ void program_radio() { // sleep(0.5); // mySerial.println("AT+DMOSETMIC=6,0\r"); + } }