aboutsummaryrefslogtreecommitdiff
path: root/examples/nrf52840/src/bin/usb_serial_winusb.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* nrf/usb: erase instance genericsDario Nieuwenhuis2025-09-281-4/+2
|
* Remove manual settings of `composite_with_iads=true`Eekle2024-12-241-7/+0
|
* Update nrf-pac.Dario Nieuwenhuis2024-11-151-1/+1
|
* nrf: port to chiptool-based `nrf-pac`.Dario Nieuwenhuis2024-11-041-5/+2
|
* usb: remove device_descriptor buffer, store bytes in UsbDevice.inner insteadAdam Greig2024-03-231-2/+0
|
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-211-1/+0
|
* Fix some typosDirk Stolle2023-05-081-1/+1
|
* nrf/usb: switch to new interrupt binding, fix vbus detect on nrf53.Dario Nieuwenhuis2023-03-061-5/+9
|
* usb: use InterfaceNumber in msos.Dario Nieuwenhuis2023-02-081-1/+2
|
* usb: unify ControlHandler+DeviceStateHandler, route all control requests to ↵Dario Nieuwenhuis2023-02-081-1/+0
| | | | | | | | all handlers. - Allows classes to handle vendor requests. - Allows classes to use a single handler for multiple interfaces. - Allows classes to access the other events (previously only `reset` was available).
* Lazily encode UTF16 values and add docsalexmoon2023-02-071-17/+8
|
* Convert MS OS descriptor builder to a writer APIalexmoon2023-02-071-0/+139
This brings it inline with the other embassy-usb descriptor APIs and allows it to integrate well with the Builder to allow class constructors to add MS OS descriptors. Also adds a `usb_serial_winusb` example to demonstrate how to use the API.