aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb-logger
Commit message (Collapse)AuthorAgeFilesLines
* fix usb-logger panic on usb disconnectJonas Bosse2025-11-052-6/+16
|
* Edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* chore: prepare embassy crate releasesUlf Lilleengen2025-08-262-4/+6
|
* feat: add semver checks and releasing to releaserUlf Lilleengen2025-08-251-1/+2
| | | | | | | | | * List dependencies of a crate * List dependents of a crate * Perform semver-checks of a crate * Prepare a release for a crate and all dependents * Use a single release.toml for cargo-release * Add changelogs where missing
* fix: prepare embassy-sync 0.7.1 releaseUlf Lilleengen2025-08-121-1/+1
| | | | * Add newtype for moved type to preserve API compat
* chore: bump embassy-usb-logger versionHaobo Gu2025-07-222-1/+5
| | | | Signed-off-by: Haobo Gu <[email protected]>
* chore: Release embassy-usb version 0.5.0Ulf Lilleengen2025-07-161-1/+1
|
* embassy-sync: bump to 0.7.0Matt Johnston2025-05-221-1/+1
|
* chore: bump embassy-sync versionUlf Lilleengen2025-01-151-1/+1
| | | | Prepare version 0.6.2 for release
* Release embassy-usb v0.4.0, embassy-usb-logger v0.4.0.Dario Nieuwenhuis2025-01-152-12/+9
|
* Remove manual settings of `composite_with_iads=true`Eekle2024-12-241-7/+0
|
* Bump sync version (#3562)Dániel Buga2024-11-221-1/+1
| | | | | | | * Bump sync version * Use old embassy-sync in rp bluetooth example * Downgrade update to minor
* Added ReceiverHandler to loggerBjorn2024-10-311-13/+79
|
* support custom style for usb loggerKezi2024-09-041-3/+50
|
* Prepare to release embassy-usbUlf Lilleengen2024-08-051-1/+1
|
* Prepare for embassy-sync 0.6.0 releaseUlf Lilleengen2024-05-291-1/+1
|
* Add a CHANGELOG to embassy-usb-logger and bump its versionDan Groshev2024-05-202-1/+29
|
* Update dependent versionsJames Munns2024-04-231-1/+1
|
* usb: remove device_descriptor buffer, store bytes in UsbDevice.inner insteadAdam Greig2024-03-231-3/+0
|
* usb-logger: avoid data loss at pipe wraparoundFelix Lelchuk2024-03-201-1/+11
|
* Merge pull request #2414 from JomerDev/usb-logger-without-deviceUlf Lilleengen2024-02-121-17/+67
|\ | | | | | | Adds function and macro to create usb logger without device (also fixes a logger issue)
| * Move usb clas loop to private functionJomer.Dev2024-02-121-42/+33
| | | | | | | | Move const to the outside of the logger
| * Fix formattingJomer.Dev2024-01-081-10/+8
| |
| * Better explanationJomer.Dev2024-01-081-1/+2
| |
| * Fix log messages not always showing up straight awayJomer.Dev2024-01-081-0/+6
| |
| * Add function to create logger from classJomer.Dev2024-01-081-0/+54
| |
* | Release embassy-usb-logger v0.1.0Dario Nieuwenhuis2024-01-141-3/+6
| |
* | Centralize license and MSRV boilerplate into the repo readme.Dario Nieuwenhuis2024-01-111-14/+0
|/
* docs: document usb-logger and usb-dfuUlf Lilleengen2023-12-191-0/+14
|
* update release version in examples and other cratesScott Mabin2023-12-041-1/+1
|
* usb: remove msos-descriptor feature.Dario Nieuwenhuis2023-11-082-6/+0
|
* rp: Add USB raw example + msos descriptor to examples and usb-loggerkalkyl2023-11-072-0/+9
|
* Upgrade static-cell to v2.0Dario Nieuwenhuis2023-11-021-1/+1
|
* Prepare embassy-net 0.2.1 and embassy-sync 0.4.0Dániel Buga2023-10-311-1/+1
|
* feat: bump embassy-sync version to 0.3.0Ulf Lilleengen2023-09-141-1/+1
| | | | Update changelog in preparation for release
* 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
* Release embassy-sync v0.2.0Dario Nieuwenhuis2023-04-131-1/+1
|
* Add more crates to docs.Dario Nieuwenhuis2023-02-131-0/+5
|
* 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).
* docs: add missing README for usb-loggerUlf Lilleengen2022-11-211-0/+15
|
* feat: embassy-usb-logger and example for rpi picoUlf Lilleengen2022-11-182-0/+159
* Add embassy-usb-logger which allows logging over USB for any device implementing embassy-usb * Add example using logger for rpi pico.