aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb-logger/src
Commit message (Collapse)AuthorAgeFilesLines
* Make usb-logger read and discard input dataDave Hylands2023-08-061-5/+12
| | | | | | This allows normal linux terminal emulators, like screen or picocom to be used with the usb_logger. Without this, calling `tcsetattr` with `TCSAFLUSH` will hang.
* usb-logger: fix breakage in log 0.4.19Dario Nieuwenhuis2023-06-121-1/+1
| | | | https://github.com/rust-lang/log/issues/567
* 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).
* feat: embassy-usb-logger and example for rpi picoUlf Lilleengen2022-11-181-0/+146
* Add embassy-usb-logger which allows logging over USB for any device implementing embassy-usb * Add example using logger for rpi pico.