diff options
| author | Jeff Epler <jeff@adafruit.com> | 2020-08-31 06:44:26 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-31 06:44:26 -0500 |
| commit | 8b2ae355ef3845e862cf1e4b08b135fd703f8396 (patch) | |
| tree | 62e11cdf70a3e9ead859a07dae0adfd394aa6559 | |
| parent | 5084d2b56bfe04bf31a839dbc69617c437f836b2 (diff) | |
| parent | 07e2fc721a9903a2f5340fe9763c8b2f17310521 (diff) | |
Merge pull request #3359 from adafruit/endpoint-counting-debug-remove
Remove debugging print-out for endpoint checking.
| -rw-r--r-- | tools/gen_usb_descriptor.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/gen_usb_descriptor.py b/tools/gen_usb_descriptor.py index adf0d8270..15bf2daa0 100644 --- a/tools/gen_usb_descriptor.py +++ b/tools/gen_usb_descriptor.py @@ -382,7 +382,6 @@ if args.max_ep != 0: for interface in interfaces: for subdescriptor in interface.subdescriptors: endpoint_address = getattr(subdescriptor, 'bEndpointAddress', 0) & 0x7f - print("Endpoint %d - vs max_ep %d" % (endpoint_address, args.max_ep)) if endpoint_address >= args.max_ep: raise ValueError("Endpoint address %d of %s must be less than %d" % (endpoint_address & 0x7f, interface.description, args.max_ep)) else: |
