Whilst the esp8266/Arduino core has defaulted and limited their
upload speeds to 460800, the ESP32 core has not, but is subject
to the same issues, namely compatability issues with CH340 usb
serial chip and higher baud rates (possibly only on *nix based
systems).
There is possibly little benefit going higher than 460800 due
to flash erase and write times rather than serial transfer
times (even if it were to connect reliably).
* New framework: Pumbaa
Pumbaa is MicroPython on top of Simba.
The framework will generate a file called frozen.c from all .py files
found in the project src/ folder. The script file main.py is the entry
point for the user script. If main.py is missing the application will
enter the interactive Python interpreter.
All c/cpp source files (including frozen.c) will be compiled, linked
and uploaded as an ordinary c application.
http://pumbaa.readthedocs.io/en/latest/
* Added pumbaa-blink example to appveyor.