Skip to content

Commit

Permalink
Remove comments on some variants in ConnectionStatus enum
Browse files Browse the repository at this point in the history
See PR#47, #47
  • Loading branch information
dilyn-corner committed Nov 22, 2022
1 parent 0d0c2f5 commit fb3da45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions esp32-wroom-rp/src/wifi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub enum ConnectionStatus {
/// No device is connected to hardware
NoEsp32 = 255,
/// Temporary status while attempting to connect to WiFi network
Idle = 0, // Assigned by WiFi.begin() in the Reference Library, is this relevant?
Idle = 0,
///
NoActiveSsid,
/// WiFi network scan has finished
Expand All @@ -25,7 +25,7 @@ pub enum ConnectionStatus {
/// Device is connected in Access Point mode
ApConnected,
/// Device failed to make connection in Access Point mode
ApFailed, // Not in the Reference Library
ApFailed,
/// Unexpected value returned from device, reset may be required
Invalid,
}
Expand Down

0 comments on commit fb3da45

Please sign in to comment.