We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36763fd commit 2821a60Copy full SHA for 2821a60
esp32-wroom-rp/src/wifi.rs
@@ -7,7 +7,7 @@ pub enum ConnectionStatus {
7
/// No device is connected to hardware
8
NoEsp32 = 255,
9
/// Temporary status while attempting to connect to WiFi network
10
- Idle = 0, // Assigned by WiFi.begin() in the Reference Library, is this relevant?
+ Idle = 0,
11
/// No SSID is available
12
NoActiveSsid,
13
/// WiFi network scan has finished
@@ -25,7 +25,7 @@ pub enum ConnectionStatus {
25
/// Device is connected in Access Point mode
26
ApConnected,
27
/// Device failed to make connection in Access Point mode
28
- ApFailed, // Not in the Reference Library
+ ApFailed,
29
/// Unexpected value returned from device, reset may be required
30
Invalid,
31
}
0 commit comments