aboutsummaryrefslogtreecommitdiff
path: root/examples/rp/src/bin/usb_ethernet.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* executor: return error when creating the spawntoken, not when spawning.Dario Nieuwenhuis2025-08-291-3/+3
|
* Add rand-core v0.9 support.Dario Nieuwenhuis2025-05-181-1/+0
| | | | Co-Authored-By: Aurélien Jacobs <[email protected]>
* Remove manual settings of `composite_with_iads=true`Eekle2024-12-241-6/+0
|
* net: refactor to simplify lifetimes/generics.Dario Nieuwenhuis2024-09-161-6/+5
|
* examples: ensure at least 3 sockets to avoid running out (DHCP, DNS, the user's)Dario Nieuwenhuis2024-08-071-7/+2
|
* Replace joke seed with best RNG available9names2024-06-251-1/+4
|
* 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
|
* chore: replace make_static! macro usage with non-macro versionUlf Lilleengen2023-12-211-10/+18
|
* usb: remove msos-descriptor feature.Dario Nieuwenhuis2023-11-081-1/+1
|
* rp: Add USB raw example + msos descriptor to examples and usb-loggerkalkyl2023-11-071-0/+1
|
* Update to embedded-io 0.5 (#1752)Dario Nieuwenhuis2023-08-071-1/+1
|
* Add descriptions to all RP2040 examples. Some need hardware that was not ↵Henrik Berg2023-07-131-0/+4
| | | | specified.
* net: Support dual stack IPRuben De Smet2023-06-071-2/+2
|
* Rename StaticConfig to StaticConfigV4Ruben De Smet2023-06-061-1/+1
|
* Use make_static! from static-cell v1.1Dario Nieuwenhuis2023-06-011-17/+13
|
* Merge #1458bors[bot]2023-05-151-4/+8
|\ | | | | | | | | | | | | | | 1458: rp: remove take!, add bind_interrupts! r=Dirbaio a=pennae both of the uart interrupts now check a flag that only the dma rx path ever sets (and now unsets again on drop) to return early if it's not as they expect. this is ... not our preferred solution, but if bind_interrupts *must* allow mutiple handlers to be specified then this is the only way we can think of that doesn't break uarts. Co-authored-by: pennae <[email protected]>
| * rp: remove take!, add bind_interrupts!pennae2023-05-151-4/+8
| |
* | net: do not use smoltcp Instant/Duration in public API.Dario Nieuwenhuis2023-05-151-1/+1
|/
* 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).
* net: allocate space for 2 sockets, needed for dhcp.Dario Nieuwenhuis2023-01-191-1/+1
|
* Add smoltcp dhcp socket configurationPaweł Jan Czochański2023-01-191-8/+3
|
* usb/cdc-ncm: add embassy-net Device implementation.Dario Nieuwenhuis2022-12-131-123/+17
|
* usb: move classes into the `embassy-usb` crate.Dario Nieuwenhuis2022-09-261-1/+1
|
* Update Rust nightly.Dario Nieuwenhuis2022-09-221-1/+0
| | | | Removes feature(generic_associated_types)
* net: feature-gate nightly-only async traits to allow building on stable.Dario Nieuwenhuis2022-08-301-1/+1
|
* rp: add usb device support.Dario Nieuwenhuis2022-08-251-0/+264