1 2 3 4 5 6 7 8 9 10 11 12 13
import uio import micropython data = b"1234" * 16 buf = uio.BytesIO(64) micropython.heap_lock() buf.write(data) micropython.heap_unlock() print(buf.getvalue())