先看看内存部分,使用 gc.mem_free() 查看,发现只有64K。ESP32-S2带有320KB 的sram,虽然比ESP32少,加上circuitpython系统占用了一部分,也不会只有64K,这显然是移植不完善的问题。
circuitpython内置的模块,一半左右和micropython是相同的,另外一半则有很大差异。特别是针对外设的部分,很多使用了 xxxxio 方式。不能说哪种对哪种错,但是这种差异对于编程来说会带来很多麻烦,特别是希望程序更加通用时。
os,功能和micropython基本一致。系统将flash划分了2M空间作为文件系统
>>> import os
>>> os.listdir()
['.fseventsd', '.metadata_never_index', '.Trashes', 'lib', 'boot_out.txt', 'System Volume Information']
>>> os.statvfs('')
(1024, 1024, 2028, 2023, 2023, 0, 0, 0, 0, 255)
>>> 1024*2028
2076672
默认的路径包括了 /lib 目录和隐藏的 .frozen 目录。
>>> import sys
>>> sys.p
path print_exception
>>> sys.path
['', '/', '.frozen', '/lib']
time模块,只有sleep(),没有sleep_ms()。没有ticks_ms()函数,使用了monotonic()函数代替。RTC功能还没有移植,因此日期相关功能不能使用。
>>> import time
>>> time.
localtime mktime monotonic monotonic_ns
sleep struct_time time
>>> time.time()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
RuntimeError: RTC is not supported on this board
>>> time.monotonic()
8130.55
大数计算也很轻松,速度很快。
>>> 2**1024
179769313486231590772930519078902473361797697894230657273430081157732675805500963132708477322407536021120113879871393357658789768814416622492847430639474124377767893424865485276302219601246094119453082952085005768838150682342462881473913110540827237163350510684586298239947245938479716304835356329624224137216
不过发现REPL下粘贴稍大一点的代码,就容易出现假死,使用文件方式就是正常的。