Running REPL in thread may solve some issues with uasyncio
and long running or infinite loops
Updated 'machine.UART' module
- fixed bug when wrong parameter was returned to callback functions
- added option to set inverted mode for Rx, Tx, CTS, RTS
- enabled using hw flow controll if CTS and/or RTC pisn are defined
- 'write_break()' function added whitch enits the break signal after data write
Updated 'sys' module
Added 'sys.tz()' to get or set the time zone
The time zone is saved in NVS string and time zone is set on boot
The time zone can be now preserved on reset, power off or deepsleep wake up
Updated 'machine' module
Added SetStackSize() function to set the MicroPython stack size
Added SetHeapSize() function to set the MicroPython heap size
Both heap an stack sizes are set as NVS variables and are read at boot time
to set the sizes, so the sizes may now be different than the compiled ones
Updated 'machine.timer' module
Changed function name 'reshot()' -> 'reshoot()'
Operating in STA & AP mode at the same time (APSTA) is now supported
Updated 'machine.ADC' module
Fixed bug: 'adc.read()' always returns 0
Added support for ADC2
other minor bug fixes and improvements
commit: 59dda71 (Apr 10, 2018)
fullSHA: 59dda7103855e2f85822f83ecbb835d66f12183d
'network' module update
see Wiki for changes
'microWebServer' frozen module updated
Some fixes related 'ticks_*' functions returning 64-bit values
better compatibiliy with 'uasyncio' module
Other minor changes and bugfixes
Updated ftp module
Added option to force boot from factory partition based on the state of the defined gpio
Added option to activate the LED on defined gpio from bootloader, as boot indication
Updated SPI module
fixed bug when initializing spi wothout CS specified
Added support for Power management and selecting CPU frequenca from MicroPython
Added support for Wake Stub during deepsleep
Some new option to machine.deepsleep() added
Updated wake_on_ext0() & wake_on_ext1 functions
Fixed bug in rtc.ntpsync(), not setting the time zone
Added getdrive() method to uos module
Updated machinne.Pin
some improvements
added all supported by ESP32 pin configuration
Updated 'upysh' frozen module
'ls' function improved, now prints total and free drive space
'cp' function added, copy file
Minor improvements and bug fixes
Added the toolchain for building on aarch64, thanks to John Cutler