Skip to content

Commit 806690f

Browse files
committed
Document wifi network struct for sorting
1 parent 36453d1 commit 806690f

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

src/network_interfaces/Wippersnapper_AIRLIFT.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,14 @@ class Wippersnapper_AIRLIFT : public Wippersnapper {
103103
_pass = WS._config.network.pass;
104104
}
105105

106-
/**********************************************************/
106+
/****************************************************************/
107107
/*!
108-
@brief a structure to hold network information
108+
@brief a structure to hold network information for sorting
109109
*/
110-
/**********************************************************/
110+
/****************************************************************/
111111
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 */
114114
};
115115

116116
/*******************************************************************/

src/network_interfaces/Wippersnapper_ESP32.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ class Wippersnapper_ESP32 : public Wippersnapper {
9292
_pass = WS._config.network.pass;
9393
}
9494

95-
/**********************************************************/
95+
/****************************************************************/
9696
/*!
97-
@brief a structure to hold network information
97+
@brief a structure to hold network information for sorting
9898
*/
99-
/**********************************************************/
99+
/****************************************************************/
100100
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 */
103103
};
104104

105105
/*******************************************************************/

src/network_interfaces/Wippersnapper_ESP8266.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,14 @@ class Wippersnapper_ESP8266 : public Wippersnapper {
115115
_pass = WS._config.network.pass;
116116
}
117117

118-
/**********************************************************/
118+
/****************************************************************/
119119
/*!
120-
@brief a structure to hold network information
120+
@brief a structure to hold network information for sorting
121121
*/
122-
/**********************************************************/
122+
/****************************************************************/
123123
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 */
126126
};
127127

128128
/*******************************************************************/

src/network_interfaces/Wippersnapper_WIFININA.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,14 +111,14 @@ class Wippersnapper_WIFININA : public Wippersnapper {
111111
strlcpy(WS._config.network.pass, _pass, sizeof(WS._config.network.pass));
112112
}
113113

114-
/**********************************************************/
114+
/****************************************************************/
115115
/*!
116-
@brief a structure to hold network information
116+
@brief a structure to hold network information for sorting
117117
*/
118-
/**********************************************************/
118+
/****************************************************************/
119119
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 */
122122
};
123123

124124
/*******************************************************************/

src/network_interfaces/ws_networking_pico.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@ class ws_networking_pico : public Wippersnapper {
9494
_pass = WS._config.network.pass;
9595
}
9696

97-
/**********************************************************/
97+
/****************************************************************/
9898
/*!
99-
@brief a structure to hold network information
99+
@brief a structure to hold network information for sorting
100100
*/
101-
/**********************************************************/
101+
/****************************************************************/
102102
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 */
105105
};
106106

107107
/*******************************************************************/

0 commit comments

Comments
 (0)