Compare commits

..

2 Commits

Author SHA1 Message Date
anschrammh
71cc0a6d8a Updated some settings 2020-12-29 11:11:19 +01:00
anschrammh
2113075d6e Added all credentials.h files to the ingnored file list 2020-12-29 11:10:29 +01:00
2 changed files with 7 additions and 4 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@
*.o *.o
*.dll *.dll
*.exe *.exe
credentials.h

View File

@ -2,13 +2,15 @@
* This sketch was written in order to stress test the TCPServer and WEBServer classes used in my project and * This sketch was written in order to stress test the TCPServer and WEBServer classes used in my project and
* hopefully find why the WEBServer class isn't stable ... * hopefully find why the WEBServer class isn't stable ...
* This test is aimed toward spotting possible causes of crash * This test is aimed toward spotting possible causes of crash
* /!\ Don't forget to define SSID and PASSWD macros ...
* Created by Anatole SCHRAMM-HENRY the 12/12/2020 * Created by Anatole SCHRAMM-HENRY the 12/12/2020
*/ */
#include "StressServer.h" #include "StressServer.h"
#include "credentials.h"
WiFiEventHandler gotIpEventHandler, disconnectedEventHandler; WiFiEventHandler gotIpEventHandler, disconnectedEventHandler;
StressServer<TCPClient> ss(1234,MAX_CLIENT,400); StressServer<TCPClient> ss(1234,10,400);
unsigned long ts(0); unsigned long ts(0);
@ -20,7 +22,7 @@ void setup()
gotIpEventHandler = WiFi.onStationModeGotIP(&(gotIp)); gotIpEventHandler = WiFi.onStationModeGotIP(&(gotIp));
disconnectedEventHandler = WiFi.onStationModeDisconnected(&(lostCon)); disconnectedEventHandler = WiFi.onStationModeDisconnected(&(lostCon));
WiFi.persistent(false); WiFi.persistent(false);
WiFi.begin("Livebox-E46E","patricia");//Connect to AccessPoint as a STAtion WiFi.begin(SSID,PASSWD);//Connect to AccessPoint as a STAtion
Serial.printf("Setup end\n"); Serial.printf("Setup end\n");
} }
@ -42,7 +44,7 @@ void debugInfo()
uint8_t frag; uint8_t frag;
ESP.getHeapStats(&freeMem, &biggestContigMemBlock, &frag); ESP.getHeapStats(&freeMem, &biggestContigMemBlock, &frag);
Serial.printf("Free MEM : %lu\nHeap Frag : %u\nMax Block : %u\n",freeMem, frag, biggestContigMemBlock); Serial.printf("Free MEM : %lu\nHeap Frag : %u\nMax Block : %u\nRunning since %u s\n",freeMem, frag, biggestContigMemBlock, millis()/1000);
} }
void gotIp(const WiFiEventStationModeGotIP& event) void gotIp(const WiFiEventStationModeGotIP& event)