Discuss here different C compiler set ups, and compiling executables for the ESP8266

User avatar
By CHERTS
#13556
red_bullok wrote:I think, that it will be better if the installer has an option to specify an path where the devkik will be installed.


This is problematic because the path C:\Espressif hardcoded in the utilities esptool.py, gen_appbin.py and gen_appbin_old.py
User avatar
By CHERTS
#13575 A new version of my build Espressif DevKit for Windows v2.0.2
The list of changes to the first page

Update procedure:
1. Remove the old version.
2. Install the new version DevKit.
ATTENTION!!! When you delete the old version will be removed entire directory C:\Espressif
User avatar
By mariuszb
#13837 Thingspeak + DS18B20
I noticed that the measurement time has an effect on lwIP

reset();
select(addr);
write(DS1820_CONVERT_T, 1); // perform temperature conversion
sleepms(1200);

................
and log:
DNS found, host: 184.106.153.149, address: 184.106.153.149
TCP created.
RECONNECT
Connection error: -11 - Not connected
os_free: conn->proto.tcp
os_free: conn


DS18B20 needs a minimum of 750 ms per measurement.
According to my tests if the time is greater than 1 s (in example we have 1 s), it affects the operation of lwIP.
(perhaps interferes also with smaller time ???)

So I have a question: how long can the timer thread be?
What is the priority of this timer?