File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -199,7 +199,13 @@ def strings_in_order(cls):
199199 description = "HID in" ,
200200 bEndpointAddress = 0x0 | standard .EndpointDescriptor .DIRECTION_IN ,
201201 bmAttributes = standard .EndpointDescriptor .TYPE_INTERRUPT ,
202- bInterval = 10 )
202+ bInterval = 8 )
203+
204+ hid_endpoint_out_descriptor = standard .EndpointDescriptor (
205+ description = "HID out" ,
206+ bEndpointAddress = 0x0 | standard .EndpointDescriptor .DIRECTION_OUT ,
207+ bmAttributes = standard .EndpointDescriptor .TYPE_INTERRUPT ,
208+ bInterval = 8 )
203209
204210hid_interfaces = [
205211 standard .InterfaceDescriptor (
@@ -213,6 +219,7 @@ def strings_in_order(cls):
213219 description = "HID" ,
214220 wDescriptorLength = len (bytes (combined_hid_report_descriptor ))),
215221 hid_endpoint_in_descriptor ,
222+ hid_endpoint_out_descriptor ,
216223 ]
217224 ),
218225 ]
You can’t perform that action at this time.
0 commit comments