This repository was archived by the owner on Jan 29, 2023. It is now read-only.
File tree 3 files changed +3
-9
lines changed
3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ void heartBeatPrint()
28
28
if (WiFi.status () == WL_CONNECTED)
29
29
{
30
30
Serial.print (" H" ); // H means connected to WiFi
31
- // Bad bug or RTL8720 => if WiFi lost, WiFi.status() still is WL_CONNECTED and WiFi.RSSI() still OK.
32
- // Similar bug in Portenta_H7 without workaround as in Portenta_H7, WiFi.RSSI() => 0
33
- // Serial.print(WiFi.RSSI());
34
31
}
35
32
else
36
33
Serial.print (" F" ); // F means not connected to WiFi
Original file line number Diff line number Diff line change @@ -63,13 +63,13 @@ bool LOAD_DEFAULT_CONFIG_DATA = false;
63
63
WM_Configuration defaultConfig =
64
64
{
65
65
//char header[16], dummy, not used
66
- "WIFI_GENERIC " ,
66
+ "RTL8720 " ,
67
67
// WiFi_Credentials WiFi_Creds [NUM_WIFI_CREDENTIALS];
68
68
// WiFi_Credentials.wifi_ssid and WiFi_Credentials.wifi_pw
69
69
"SSID1" , "password1" ,
70
70
"SSID2" , "password2" ,
71
71
//char board_name [24];
72
- "SAMD -Control" ,
72
+ "RTL8720 -Control" ,
73
73
// terminate the list
74
74
//int checkSum, dummy, not used
75
75
0
Original file line number Diff line number Diff line change @@ -45,9 +45,6 @@ void heartBeatPrint()
45
45
if (WiFi.status () == WL_CONNECTED)
46
46
{
47
47
Serial.print (" H" ); // H means connected to WiFi
48
- // Bad bug or RTL8720 => if WiFi lost, WiFi.status() still is WL_CONNECTED and WiFi.RSSI() still OK.
49
- // Similar bug in Portenta_H7 without workaround as in Portenta_H7, WiFi.RSSI() => 0
50
- // Serial.print(WiFi.RSSI());
51
48
}
52
49
else
53
50
Serial.print (" F" ); // F means not connected to WiFi
@@ -326,7 +323,7 @@ void setup()
326
323
327
324
// Set customized DHCP HostName
328
325
WiFiManager->begin (HOST_NAME);
329
- // Or use default Hostname "SAMD -WIFI-XXXXXX"
326
+ // Or use default Hostname "RTL8720 -WIFI-XXXXXX"
330
327
// WiFiManager->begin();
331
328
}
332
329
You can’t perform that action at this time.
0 commit comments