Clemens Kirchgatterer
Clemens Kirchgatterer
On the other hand: https://www.arduino.cc/en/Reference/WiFiUDPFlush The API documentation is clear as it says: Discard any bytes that have been written to the client but not yet read.
> So Ethernet UDP and WiFi UDP do not behave similarly ? right. :-(
**idf\_monitor** seems to be the most user friendly to me. All others need some kind of manual work to load/pipe the stacktrace into the decoder. If it ain't idf\_monitor for...
I want to add, this issue is also discussed in the ESP8266 implementation here: https://github.com/esp8266/Arduino/issues/3787. we should just copy whatever the fix will be there.
Just an observation from my side: I have a firmware which builds for ESP32 and ESP8266 which calls `setTimeout()` in some places (`HTTPClient`/`WiFiClient` and `WiFIClientSecure`) and I never actually realized,...
I don't have this particular issue, that SD cards fail to mount, but I see other SD related problems like writes to files returning 0 (and no data was written),...
Also a minor thing is, that the file search will find duplicated files even in directories that are in **$(EXCLUDE_DIRS)**. Besides I *think* EXCLUDE_DIRS is not honored consistently (i.e. I...
``` EXCLUDE_DIRS := $(ESP_LIBS)/DNSServer EXCLUDE_DIRS += |$(ESP_LIBS)/ESP8266SdFat EXCLUDE_DIRS += |$(ESP_LIBS)/Ethernet EXCLUDE_DIRS += |$(ESP_LIBS)/AzureIoT EXCLUDE_DIRS += |$(ESP_LIBS)/ArduinoOTA EXCLUDE_DIRS += |$(ESP_LIBS)/BluetoothSerial ``` ``` clemens@alien:~/Devel/ESP/emonio-fw$ make list_lib make[1]: Entering directory '/home/clemens/Devel/ESP/emonio-fw/html' make[1]: Nothing...
ah, IC. THX. that's a good hint. ESP_LIBS is not to blame, but the spaces are a problem of course. will dig into it.