Skip to content
Snippets Groups Projects
Commit d0daa3a3 authored by thiebolt's avatar thiebolt
Browse files

update

parent 60ca27b9
Branches
Tags
No related merge requests found
......@@ -29,8 +29,11 @@ neOSensor.build.sslflags=
# [aug.22] set default 32KB balanced IRAM / ICACHE
neOSensor.build.mmuflags=-DMMU_IRAM_SIZE=0x8000 -DMMU_ICACHE_SIZE=0x8000
neOSensor.build.non32xferflags=
# Debug ?
neOSensor.build.debug_port=
neOSensor.build.debug_level=
#neOSensor.build.debug_port=-DDEBUG_ESP_PORT=Serial
#neOSensor.build.debug_level=-DDEBUG_ESP_WIFI
neOSensor.build.flash_mode=dio
neOSensor.build.flash_flags=-DFLASHMODE_DIO
......
......@@ -9,6 +9,7 @@
* - ...
*
* ---
* F.Thiebolt jan.23 removed wifiManager.setMinimumSignalQuality(); cause of DHCP issues ??
* F.Thiebolt aug.22 removed WiFiparameters hack :) ... by means of dynamic allocation :|
* F.Thiebolt aug.21 extended checkCLEAR to 5000ms (some ESP32 have huge
* internal capacitor enabled@starup ?!?!)
......@@ -213,7 +214,8 @@ bool setupWiFi( wifiParametersMgt *wp ) {
wifiManager.setSaveConfigCallback( cb_exitConfigMode );
// set minimum signal level
wifiManager.setMinimumSignalQuality(); // min. default is 8%
// [jan.23] disabled while trying to overcome DHCP issues :|
// wifiManager.setMinimumSignalQuality(); // min. default is 8%
/* [aug.20] does not work on ESP32 ... segfault :(
* set custom ip for AP portal
......
......@@ -642,7 +642,7 @@ void earlySetup( void ) {
* we decided to set WiFi physical mode explicitly
*/
#ifdef ESP8266
WiFi.setPhyMode(WIFI_PHY_MODE_11G); # [jan.23] does it solve esp8266 DHCP issue ??? not really sure
WiFi.setPhyMode(WIFI_PHY_MODE_11G); // [jan.23] does it solve esp8266 DHCP issue ??? not really sure
#endif /* ESP8266 */
// WiFi.disconnect(true); // to erase default credentials
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment