Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

usb/cdc: writing small blocks should not require allocation #991

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions micropython/usb/usb-device-cdc/usb/device/cdc.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,10 +350,9 @@ def _rd_cb(self, ep, res, num_bytes):
###

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

if mv is buf:
mv = memoryview(buf)
mv = mv[nbytes:]

# check for timeout
Expand Down
Loading