mirror of
https://github.com/micropython/micropython.git
synced 2025-09-08 10:51:10 +02:00
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())
|