diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-12-29 22:40:54 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-01-07 19:30:17 -0500 |
commit | 22da8ca39c98c3f443659b41c6e7813166c9f436 (patch) | |
tree | 047a9940737b8a087fd14ae3f0a53b79c78419b2 /src | |
parent | 6e18af70574064ca52b238c0dd5bfd551133f06b (diff) | |
download | kutter-22da8ca39c98c3f443659b41c6e7813166c9f436.tar.gz kutter-22da8ca39c98c3f443659b41c6e7813166c9f436.tar.xz kutter-22da8ca39c98c3f443659b41c6e7813166c9f436.zip |
usb_cdc: Notify both the bulk_in and bulk_out tasks on a configure
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/generic/usb_cdc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/generic/usb_cdc.c b/src/generic/usb_cdc.c index d395a3c0..878cc857 100644 --- a/src/generic/usb_cdc.c +++ b/src/generic/usb_cdc.c @@ -398,6 +398,7 @@ usb_req_set_configuration(struct usb_ctrlrequest *req) } usb_set_configure(); usb_notify_bulk_in(); + usb_notify_bulk_out(); usb_do_xfer(NULL, 0, UX_SEND); } |