Skip to content

Commit 51fda58

Browse files
committed
Fix SSID print typo
1 parent 4ce2435 commit 51fda58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/RTK_Everywhere/Network.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ void networkDisplayIpAddress(uint8_t networkType)
389389
{
390390
strcpy(ipAddress, networkGetIpAddress(networkType).toString().c_str());
391391
if (network->type == NETWORK_TYPE_WIFI)
392-
systemPrintf("%s '%s' IP address: %s, RSSI: %d\r\n", networkName[network->type], ipAddress, wifiGetSsid(), wifiGetRssi());
392+
systemPrintf("%s '%s' IP address: %s, RSSI: %d\r\n", networkName[network->type], wifiGetSsid(), ipAddress, wifiGetRssi());
393393
else
394394
systemPrintf("%s IP address: %s\r\n", networkName[network->type], ipAddress);
395395

0 commit comments

Comments
 (0)