Skip to content
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
8 changes: 4 additions & 4 deletions micropython/usb/usb-device/usb/device/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,10 +575,10 @@ def submit_xfer(self, ep_addr, data, done_cb=None):
# - data. Buffer containing data to send, or for data to be read into
# (depending on endpoint direction).
#
# - done_cb. Optional callback function for when the transfer
# completes. The callback is called with arguments (ep_addr, result,
# xferred_bytes) where result is one of xfer_result_t enum (see top of
# this file), and xferred_bytes is an integer.
# - done_cb. Optional callback function for when the transfer completes.
# The callback is called with arguments (ep_addr, result, xferred_bytes)
# where result is an integer equal to one of machine.USBDevice.XFER_nnn
# enums, and xferred_bytes is an integer.
#
# If the function returns, the transfer is queued.
#
Expand Down
Loading