Skip to content

Commit 1da4e66

Browse files
authored
Merge pull request #502 from manchoz/manchoz_missing_wifi_config
Add WiFi::config methods from the parent class
2 parents 1d0256e + 1b8bfce commit 1da4e66

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

libraries/WiFi/src/WiFi.h

+3
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ class WiFiClass : public MbedSocketClass {
8686
*/
8787
int begin(const char* ssid, const char* passphrase);
8888

89+
// Inherit config methods from the parent class
90+
using MbedSocketClass::config;
91+
8992
void config(const char* localip, const char* netmask, const char* gateway);
9093

9194
int beginAP(const char* ssid, const char* passphrase, uint8_t channel = DEFAULT_AP_CHANNEL);

0 commit comments

Comments
 (0)