Skip to content

Commit 8b2ae35

Browse files
authored
Merge pull request #3359 from adafruit/endpoint-counting-debug-remove
Remove debugging print-out for endpoint checking.
2 parents 5084d2b + 07e2fc7 commit 8b2ae35

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tools/gen_usb_descriptor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,6 @@ def strings_in_order(cls):
382382
for interface in interfaces:
383383
for subdescriptor in interface.subdescriptors:
384384
endpoint_address = getattr(subdescriptor, 'bEndpointAddress', 0) & 0x7f
385-
print("Endpoint %d - vs max_ep %d" % (endpoint_address, args.max_ep))
386385
if endpoint_address >= args.max_ep:
387386
raise ValueError("Endpoint address %d of %s must be less than %d" % (endpoint_address & 0x7f, interface.description, args.max_ep))
388387
else:

0 commit comments

Comments
 (0)