mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-07-15 03:26:30 +02:00
Add support for WiFi long range mode (#3190)
* Add support for WiFi long range mode * Update WiFiGeneric.cpp
This commit is contained in:
@ -83,6 +83,7 @@ class WiFiGenericClass
|
||||
int32_t channel(void);
|
||||
|
||||
void persistent(bool persistent);
|
||||
void enableLongRange(bool enable);
|
||||
|
||||
static bool mode(wifi_mode_t);
|
||||
static wifi_mode_t getMode();
|
||||
@ -100,6 +101,7 @@ class WiFiGenericClass
|
||||
|
||||
protected:
|
||||
static bool _persistent;
|
||||
static bool _long_range;
|
||||
static wifi_mode_t _forceSleepLastMode;
|
||||
|
||||
static int setStatusBits(int bits);
|
||||
|
Reference in New Issue
Block a user