1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-15 00:02:49 +03:00

code review

This commit is contained in:
Ivan Grokhotkov
2015-05-22 03:36:04 +03:00
parent 57a1bdc99f
commit 5bdb26ac29
3 changed files with 19 additions and 19 deletions

View File

@ -238,7 +238,7 @@ public:
* @param isHidden bool *
* @return (true if ok)
*/
bool getNetworkInfo(uint8_t networkItem, const char** ssid, uint8_t * encryptionType, int32_t * RSSI, uint8_t ** BSSID, int32_t * channel, bool * isHidden);
bool getNetworkInfo(uint8_t networkItem, String &ssid, uint8_t &encryptionType, int32_t &RSSI, uint8_t* &BSSID, int32_t &channel, bool &isHidden);
/*
@ -290,8 +290,8 @@ protected:
static void _smartConfigDone(void* result);
bool _smartConfigStarted = false;
bool useApMode;
bool useClientMode;
bool _useApMode;
bool _useClientMode;
static size_t _scanCount;
static void* _scanResult;