14 lines
165 B
Python
14 lines
165 B
Python
import uio
|
|
import micropython
|
|
|
|
data = b"1234" * 16
|
|
buf = uio.BytesIO(64)
|
|
|
|
micropython.heap_lock()
|
|
|
|
buf.write(data)
|
|
|
|
micropython.heap_unlock()
|
|
|
|
print(buf.getvalue())
|