Skip to content

Commit b35a748

Browse files
committed
Update prints
1 parent fe8eecc commit b35a748

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Firmware/RTK_Everywhere/LoRa.ino

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ void muxSelectUm980()
291291
digitalWrite(pin_muxA, LOW); // Connect ESP UART1 to UM980
292292
}
293293

294-
//Used during firmware updates
294+
// Used during firmware updates
295295
void muxSelectLoRaUart0()
296296
{
297297
digitalWrite(pin_muxA, HIGH); // Connect ESP UART1 to LoRa UART0
@@ -517,7 +517,12 @@ void loraSetup(bool transmit)
517517
if (configureSuccess == false)
518518
systemPrintln("LoRa radio failed to configure");
519519
else
520-
systemPrintln("LoRa radio configured");
520+
{
521+
if (transmit == true)
522+
systemPrintln("LoRa radio configured for transmitting");
523+
else
524+
systemPrintln("LoRa radio configured for receiving");
525+
}
521526
}
522527
else
523528
systemPrintln("LoRa radio failed to enter command mode");

0 commit comments

Comments
 (0)