mirror of
https://github.com/bkerler/edl.git
synced 2024-11-14 11:05:05 -05:00
improve speed
This commit is contained in:
parent
adb2bc78e6
commit
66b9871365
2 changed files with 6 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -103,3 +103,5 @@ venv.bak/
|
|||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
|
||||
edl_config.json
|
|
@ -49,6 +49,8 @@ USB_RECIP_OTHER = 0x03
|
|||
USB_RECIP_PORT = 0x04
|
||||
USB_RECIP_RPIPE = 0x05
|
||||
|
||||
MAX_USB_BULK_BUFFER_SIZE = 16384
|
||||
|
||||
tag = 0
|
||||
|
||||
CDC_CMDS = {
|
||||
|
@ -336,7 +338,8 @@ class usb_class(DeviceClass):
|
|||
|
||||
def write(self, command, pktsize=None):
|
||||
if pktsize is None:
|
||||
pktsize = self.EP_OUT.wMaxPacketSize
|
||||
#pktsize = self.EP_OUT.wMaxPacketSize
|
||||
pktsize = MAX_USB_BULK_BUFFER_SIZE
|
||||
if isinstance(command, str):
|
||||
command = bytes(command, 'utf-8')
|
||||
pos = 0
|
||||
|
|
Loading…
Reference in a new issue