File tree Expand file tree Collapse file tree 5 files changed +25
-25
lines changed Expand file tree Collapse file tree 5 files changed +25
-25
lines changed Original file line number Diff line number Diff line change @@ -103,14 +103,14 @@ class Wippersnapper_AIRLIFT : public Wippersnapper {
103
103
_pass = WS._config .network .pass ;
104
104
}
105
105
106
- /* *********************************************************/
106
+ /* ************************************************************** * /
107
107
/* !
108
- @brief a structure to hold network information
108
+ @brief a structure to hold network information for sorting
109
109
*/
110
- /* *********************************************************/
110
+ /* ************************************************************** * /
111
111
struct WiFiNetwork {
112
- char ssid[33 ]; // Maximum SSID length is 32 characters + null terminator
113
- int rssi;
112
+ char ssid[33 ]; /* !< SSID (Max 32 characters + null terminator */
113
+ int rssi; /* !< Received Signal Strength Indicator */
114
114
};
115
115
116
116
/* ******************************************************************/
Original file line number Diff line number Diff line change @@ -92,14 +92,14 @@ class Wippersnapper_ESP32 : public Wippersnapper {
92
92
_pass = WS._config .network .pass ;
93
93
}
94
94
95
- /* *********************************************************/
95
+ /* ************************************************************** * /
96
96
/* !
97
- @brief a structure to hold network information
97
+ @brief a structure to hold network information for sorting
98
98
*/
99
- /* *********************************************************/
99
+ /* ************************************************************** * /
100
100
struct WiFiNetwork {
101
- char ssid[33 ]; // Maximum SSID length is 32 characters + null terminator
102
- int rssi;
101
+ char ssid[33 ]; /* !< SSID (Max 32 characters + null terminator */
102
+ int rssi; /* !< Received Signal Strength Indicator */
103
103
};
104
104
105
105
/* ******************************************************************/
Original file line number Diff line number Diff line change @@ -115,14 +115,14 @@ class Wippersnapper_ESP8266 : public Wippersnapper {
115
115
_pass = WS._config .network .pass ;
116
116
}
117
117
118
- /* *********************************************************/
118
+ /* ************************************************************** * /
119
119
/* !
120
- @brief a structure to hold network information
120
+ @brief a structure to hold network information for sorting
121
121
*/
122
- /* *********************************************************/
122
+ /* ************************************************************** * /
123
123
struct WiFiNetwork {
124
- char ssid[33 ]; // Maximum SSID length is 32 characters + null terminator
125
- int rssi;
124
+ char ssid[33 ]; /* !< SSID (Max 32 characters + null terminator */
125
+ int rssi; /* !< Received Signal Strength Indicator */
126
126
};
127
127
128
128
/* ******************************************************************/
Original file line number Diff line number Diff line change @@ -111,14 +111,14 @@ class Wippersnapper_WIFININA : public Wippersnapper {
111
111
strlcpy (WS._config .network .pass , _pass, sizeof (WS._config .network .pass ));
112
112
}
113
113
114
- /* *********************************************************/
114
+ /* ************************************************************** * /
115
115
/* !
116
- @brief a structure to hold network information
116
+ @brief a structure to hold network information for sorting
117
117
*/
118
- /* *********************************************************/
118
+ /* ************************************************************** * /
119
119
struct WiFiNetwork {
120
- char ssid[33 ]; // Maximum SSID length is 32 characters + null terminator
121
- int rssi;
120
+ char ssid[33 ]; /* !< SSID (Max 32 characters + null terminator */
121
+ int rssi; /* !< Received Signal Strength Indicator */
122
122
};
123
123
124
124
/* ******************************************************************/
Original file line number Diff line number Diff line change @@ -94,14 +94,14 @@ class ws_networking_pico : public Wippersnapper {
94
94
_pass = WS._config .network .pass ;
95
95
}
96
96
97
- /* *********************************************************/
97
+ /* ************************************************************** * /
98
98
/* !
99
- @brief a structure to hold network information
99
+ @brief a structure to hold network information for sorting
100
100
*/
101
- /* *********************************************************/
101
+ /* ************************************************************** * /
102
102
struct WiFiNetwork {
103
- char ssid[33 ]; // Maximum SSID length is 32 characters + null terminator
104
- int rssi;
103
+ char ssid[33 ]; /* !< SSID (Max 32 characters + null terminator */
104
+ int rssi; /* !< Received Signal Strength Indicator */
105
105
};
106
106
107
107
/* ******************************************************************/
You can’t perform that action at this time.
0 commit comments