This is the version provided by foreign netizen Loboris. Functions such as gc, copy and paste mode, and utime are all normal, and other peripheral functions are being added. Firmware Description: https://loboris.eu/forum/showthread.php?tid=877 Firmware Download: https://github.com/loboris/MicroPython_K210_LoBo/blob/master/firmware/MaixPy.bin
I (188995) w25qxx_init: manuf_id:0xc8, device_id:0x17 __ __ _____ __ __ _____ __ __ | \/ | /\ |_ _| \ \ / / | __ \ \ \ / / | \ / | / \ | | \ V / | |__) | \ \_/ / | |\/| | / /\ \ | | > < | ___/ \ / | | | | / ____ \ _| |_ / . \ | | | |_| |_| /_/ \_\ |_____| /_/ \_\ |_| |_| --------------------------------------------------------- I (228135) [MAIXPY]: Stack: min: 8065 I (232617) [MAIXPY]: Pll0: freq: 780000000 I (237391) [MAIXPY]: Pll1: freq: 159714285 I (242165) [MAIXPY]: Cpu: freq: 390000000 I (246938) [MAIXPY]: Flash: ID: [0xc8:0x17] I (535090) [VFS_SPIFFS]: Flash VFS registered. MaixPy-FreeRTOS by LoBo v1.0.1 ------------------------------- MicroPython 76eeec7-dirty on 2019-01-24; Sipeed_board with Kendryte-K210 Type "help()" for more information. >>> >>> >>> help('modules') __main__ gc ucollections urandom _thread machine ucryptolib ure array math uctypes ustruct binascii micropython uerrno utime board os uhashlib utimeq builtins pye uheapq uzlib cmath re uio websocket collections sys ujson ymodem display ubinascii uos Plus any modules on the filesystem >>> >>> import machine, uos, utime, _thread >>> def test(): ... cnt = 0 ... machine.initleds() ... while 1: ... machine.setled(machine.LEDR, False) ... machine.setled(machine.LEDB, False) ... if (cnt % 2): ... machine.setled(machine.LEDR, True) ... else: ... machine.setled(machine.LEDB, True) ... cnt += 1 ... utime.sleep_ms(500) ... >>> >>> th = _thread.start_new_thread("TestLED", test, ()) >>> _thread.list() Total system run time: 880.221 s, Tasks run time: 880.221 s, numTasks=5 MicroPython threads: ------------------------------------------------------------------------------------------------ ID(handle) Proc Name State Stack MaxUsed PyStack Type Priority Run time (s) (%) ---------------------------------------------------------------------------------------------------------------- 2148287848 0 TestLED running 16016 1232 2048 PYTHON 8 0.354 0.04