19 lines
234 B
Python
19 lines
234 B
Python
try:
|
|
import uio
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
import micropython
|
|
|
|
data = b"1234" * 16
|
|
buf = uio.BytesIO(64)
|
|
|
|
micropython.heap_lock()
|
|
|
|
buf.write(data)
|
|
|
|
micropython.heap_unlock()
|
|
|
|
print(buf.getvalue())
|