update arduino-esp32 to 3.0.2
parent
0bac260717
commit
d5199c98ee
|
|
@ -12,7 +12,7 @@
|
||||||
- AsyncTCP - LGPL 3.0 - 3.1.4 - https://github.com/mathieucarbou/AsyncTCP
|
- AsyncTCP - LGPL 3.0 - 3.1.4 - https://github.com/mathieucarbou/AsyncTCP
|
||||||
- ArduinoJson - MIT - 7.0.4 - https://github.com/bblanchon/ArduinoJson
|
- ArduinoJson - MIT - 7.0.4 - https://github.com/bblanchon/ArduinoJson
|
||||||
- ArduinoUniqueID - MIT - 1.3.0 - https://github.com/ricaun/ArduinoUniqueID
|
- ArduinoUniqueID - MIT - 1.3.0 - https://github.com/ricaun/ArduinoUniqueID
|
||||||
- ESP32 - LGPL 2.1 - 3.0.1 - https://github.com/espressif/arduino-esp32
|
- ESP32 - LGPL 2.1 - 3.0.2 - https://github.com/espressif/arduino-esp32
|
||||||
|
|
||||||
Arduino IDE configuration for the MCU are stored in the module_XXX.h file.
|
Arduino IDE configuration for the MCU are stored in the module_XXX.h file.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -491,6 +491,15 @@ String WiFiMngt::TranslateTxPower(wifi_power_t data) {
|
||||||
case WIFI_POWER_19_5dBm:
|
case WIFI_POWER_19_5dBm:
|
||||||
ret = F("19.5dBm");
|
ret = F("19.5dBm");
|
||||||
break;
|
break;
|
||||||
|
case WIFI_POWER_20dBm:
|
||||||
|
ret = F("20dBm");
|
||||||
|
break;
|
||||||
|
case WIFI_POWER_20_5dBm:
|
||||||
|
ret = F("20.5dBm");
|
||||||
|
break;
|
||||||
|
case WIFI_POWER_21dBm:
|
||||||
|
ret = F("21dBm");
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue