aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb/src/class/cdc_ncm/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* make usb endpoint allocator methods accept an optional EndpointAddresskorbin2025-07-131-3/+3
|
* embassy-usb: fix `core::intrinsics` deprecate warning in nightly.René van Dorst2025-02-031-2/+1
| | | | | | | | | | | | Replaced `core::intrinsics::copy_nonoverlapping` with the `core::ptr::copy_nonoverlapping`. Compiling embassy-usb v0.4.0 (embassy/embassy-usb) warning: use of deprecated module `core::intrinsics`: import this function via `std::mem` instead --> embassy/embassy-usb/src/class/cdc_ncm/mod.rs:17:23 | 17 | use core::intrinsics::copy_nonoverlapping; | ^^^^^^^^^^^^^^^^^^^
* Apply Pedantic Clippy LintsRafael Bachmann2023-10-151-28/+20
|
* Fix clippyRafael Bachmann2023-10-151-7/+8
|
* Fix hardcoded buffer length in USB NCM causing broken link on USB 2.0.Isaikin Roman2023-08-201-8/+13
|
* usb: add missing builder reexports.Dario Nieuwenhuis2023-06-291-2/+2
| | | | | Fixes #1176 cc #1596
* Fix some typosDirk Stolle2023-05-081-2/+2
|
* usb: unify ControlHandler+DeviceStateHandler, route all control requests to ↵Dario Nieuwenhuis2023-02-081-33/+50
| | | | | | | | 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).
* Merge #1151bors[bot]2023-02-011-3/+3
|\ | | | | | | | | | | | | | | 1151: USB: allow setting the interface string for interface alt settings r=Dirbaio a=mattico This is a breaking change to embassy-usb's API. Co-authored-by: Matt Ickstadt <[email protected]>
| * usb: allow setting the interface string for interface alt settingsMatt Ickstadt2023-01-131-3/+3
| |
* | usb: docsDario Nieuwenhuis2023-01-311-16/+35
|/
* net: split driver trait to a separate crate.Dario Nieuwenhuis2022-12-261-1/+0
|
* usb/cdc-ncm: add embassy-net Device implementation.Dario Nieuwenhuis2022-12-131-0/+496