summaryrefslogtreecommitdiff
path: root/tools/gen_usb_descriptor.py
AgeCommit message (Collapse)Author
2020-07-28fix windows' encoding defaultsencodinglady ada
2020-07-22Add externs. GCC10 complains about duplicate definesScott Shawcroft
2020-07-06Add license to some obvious files.Diego Elio Pettenò
2019-11-12Allow boards to change the "CircuitPython" text in their USB interface ↵Thea Flowers
description. In cases where more than one board is connected to a single computer it can become pretty hard to figure out which board you're actually talking to. For example, if you have several MIDI-compatible boards they all show up as "CircuitPython MIDI". This change allows boards to replace the "CircuitPython" part of their USB descriptors with more specific text, for example, "CircuitPython Feather" or just "Feather". This will let folks more easily tell boards apart. The new option is named `USB_INTERFACE_NAME` and is available in `mkconfigboard.mk`. For example: ``` USB_INTERFACE_NAME = "Feather" ```
2019-10-08Fix invalid syntax errorKamil Tomaszewski
2019-10-08Merge branch 'master' into circuitpython-number-endpointkamtom480
2019-10-08Add the specific endpoint namesKamil Tomaszewski
2019-10-08Use boolean type for renumber_endpointsKamil Tomaszewski
2019-10-07Add HID OUTKamil Tomaszewski
2019-10-07Add validationKamil Tomaszewski
2019-10-07Add an alternative way to number the USB endpointsKamil Tomaszewski
Two options available: - relative numbering (USB_RELATIVE_EP_NUM = 1) - default - absolute numbering (USB_RELATIVE_EP_NUM = 0) - new!
2019-10-04Add a way to change max packet size for MSCKamil Tomaszewski
2019-10-01Update tinyusb to fix gamepad;add HID OUT interface descriptorDan Halbert
2019-09-09Renumber only chosen USB interfaces; fix HID report idsDan Halbert
2019-09-04use only one endpoint pair for MSC except on SAMD21Dan Halbert
2019-09-03simpler generation of HID device tablesDan Halbert
2019-09-03WIPDan Halbert
2019-01-10Polish thanks to Dan's feedbackScott Shawcroft
2019-01-09Add USB MIDI support for SAMD and nRF.Scott Shawcroft
The API should be identical to using a UART for MIDI. Fixes #672
2018-11-09Incorporate feedback:Scott Shawcroft
* Clean up board defines. * Add flush on eject and stay ejected. * Swith back to NONE protocol for CDC.
2018-11-08Move atmel-samd to tinyusb and support nRF flash.Scott Shawcroft
This started while adding USB MIDI support (and descriptor support is in this change.) When seeing that I'd have to implement the MIDI class logic twice, once for atmel-samd and once for nrf, I decided to refactor the USB stack so its shared across ports. This has led to a number of changes that remove items from the ports folder and move them into supervisor. Furthermore, we had external SPI flash support for nrf pending so I factored out the connection between the usb stack and the flash API as well. This PR also includes the QSPI support for nRF.