upload (the compilation time if sdkconfig is changed is several minutes

So I tried to change the BAUD rate - in theory is should work at 921600 - but I didn't achieve that.
However, I did manage 460800 (upload 9.9s):
I didn't manage to find the correct setting in sdkconfig (though it is surely there - various values just resulted in them changing back..)
So I tweaked esptool.py (in D:\esp-idf\components\esptool_py\esptool on my machine)
Line 268
Code: Select all
def _set_port_baudrate(self, baud):
try:
self._port.baudrate = baud
except IOError:
Code: Select all
def _set_port_baudrate(self, baud):
try:
self._port.baudrate = baud * 4 // Set the speed to 4 * requested :-)
except IOError:
In theory - it should be possible to go to x8 - my laptop couldn't handle this however.. It should be possible to set the rate without the 'tweak' I used....
I get the message
Which might explain some of the problems with faster speeds?Features: WiFi, BT, Dual Core, 240MHz, VRef calibration in efuse, Coding Scheme None
WARNING: Detected crystal freq 41.47MHz is quite different to normalized freq 40MHz. Unsupported crystal in use?
Martin