Skip to content

Commit 7ad8be4

Browse files
committed
usb/cdc: Writing small blocks should not require allocation.
Signed-off-by: Matthias Urlichs <[email protected]>
1 parent 96e17b6 commit 7ad8be4

File tree

1 file changed

+4
-3
lines changed
  • micropython/usb/usb-device-cdc/usb/device

1 file changed

+4
-3
lines changed

micropython/usb/usb-device-cdc/usb/device/cdc.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -350,10 +350,9 @@ def _rd_cb(self, ep, res, num_bytes):
350350
###
351351

352352
def write(self, buf):
353-
# use a memoryview to track how much of 'buf' we've written so far
354-
# (unfortunately, this means a 1 block allocation for each write, but it's otherwise allocation free.)
355353
start = time.ticks_ms()
356-
mv = memoryview(buf)
354+
# use a memoryview to track partial writes
355+
mv = buf
357356
while True:
358357
# Keep pushing buf into _wb into it's all gone
359358
nbytes = self._wb.write(mv)
@@ -362,6 +361,8 @@ def write(self, buf):
362361
if nbytes == len(mv):
363362
return len(buf) # Success
364363

364+
if mv is buf:
365+
mv = memoryview(buf)
365366
mv = mv[nbytes:]
366367

367368
# check for timeout

0 commit comments

Comments
 (0)