Skip to content

Commit 927dc29

Browse files
committed
Debug
1 parent ba72661 commit 927dc29

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

Firmware/RTK_Everywhere/Network.ino

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,20 @@ bool networkConsumerIsConnected(NETCONSUMER_t consumer)
599599
// Validate the consumer
600600
networkConsumerValidate(consumer);
601601

602+
// if (consumer == NETCONSUMER_NTRIP_SERVER_1)
603+
// {
604+
// index = networkIndexTable[networkPriority];
605+
// systemPrintf("NETCONSUMER_NTRIP_SERVER_1: %ld %d %d %d %d\r\n",
606+
// networkHasInternet_bm,
607+
// networkConsumerPriority[consumer],
608+
// networkPriority,
609+
// index,
610+
// networkInterfaceHasInternet(index)
611+
// );
612+
// }
613+
614+
// NETCONSUMER_NTRIP_SERVER_1: 2 3 3 3 0
615+
602616
// If the client is using the highest priority network and that
603617
// network is still available then continue as normal
604618
if (networkHasInternet_bm && (networkConsumerPriority[consumer] == networkPriority))

Firmware/RTK_Everywhere/RTK_Everywhere.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ bool savePossibleSettings = true; // Save possible vs. available settings. See r
430430
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
431431
#ifdef COMPILE_WIFI
432432
int packetRSSI;
433-
RTK_WIFI wifi(false);
433+
RTK_WIFI wifi(true); // wifi(false); is non-verbose. For verbose, change to wifi(true);
434434
#endif // COMPILE_WIFI
435435

436436
// WiFi Globals - For other module direct access

0 commit comments

Comments
 (0)