File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ void muxSelectUm980()
291
291
digitalWrite (pin_muxA, LOW); // Connect ESP UART1 to UM980
292
292
}
293
293
294
- // Used during firmware updates
294
+ // Used during firmware updates
295
295
void muxSelectLoRaUart0 ()
296
296
{
297
297
digitalWrite (pin_muxA, HIGH); // Connect ESP UART1 to LoRa UART0
@@ -517,7 +517,12 @@ void loraSetup(bool transmit)
517
517
if (configureSuccess == false )
518
518
systemPrintln (" LoRa radio failed to configure" );
519
519
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
+ }
521
526
}
522
527
else
523
528
systemPrintln (" LoRa radio failed to enter command mode" );
You can’t perform that action at this time.
0 commit comments