add rtt port

This commit is contained in:
李昂 2021-11-03 10:16:17 +08:00
parent 5b23a8985a
commit a8e30fdd16
3 changed files with 15 additions and 0 deletions

13
port/rt-thread/main.py Normal file
View File

@ -0,0 +1,13 @@
import PikaStdLib
print('hello PikaScript!')
mem = PikaStdLib.MemChecker()
print('mem used max:')
mem.max()
i = 0
while i < 100:
i = i + 1
print(i)

Binary file not shown.

View File

@ -0,0 +1,2 @@
pikascript-core==v1.1.3
PikaStdLib==v1.1.0