summaryrefslogtreecommitdiff
path: root/embassy-usb
AgeCommit message (Expand)Author
2022-10-07all Cargo.toml: Add license to all crate Cargo.toml fileschrysn
2022-10-02Build docs in CIDario Nieuwenhuis
2022-09-26usb: move classes into the `embassy-usb` crate.Dario Nieuwenhuis
2022-09-26usb: do not allow converting Directon to/from u8Dario Nieuwenhuis
2022-09-26usb: split driver trait to separate crate.Dario Nieuwenhuis
2022-09-24usb: fix compile errors with the log featureAlex Martens
2022-09-22Update Rust nightly.Dario Nieuwenhuis
2022-08-29futures: move select* and join* to separate modules.Dario Nieuwenhuis
2022-08-22split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis
2022-08-22nRF documentation warning fixesUlf Lilleengen
2022-08-15Add -boot docserver metadata.Dario Nieuwenhuis
2022-07-29Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis
2022-07-08Build in a new Unpowered statehuntc
2022-07-07Puts in the machinery to handle power detected/removedhuntc
2022-07-07Introduces EnabledUsbDevicehuntc
2022-06-26docs: Add $COMMIT to git srclinks.Dario Nieuwenhuis
2022-06-12Run rustfmt.Dario Nieuwenhuis
2022-05-31usb: set default max_packet_size_0 to 64.Dario Nieuwenhuis
2022-05-30usb: make ControlPipe accept, reject async.Dario Nieuwenhuis
2022-05-30usb: add first, last params to ControlPipe data_in, data_out.Dario Nieuwenhuis
2022-05-30usb: remove is_stalled, set_stalled from Endpoint.Dario Nieuwenhuis
2022-05-30usb: delay bus.set_address() to after ending the control transfer.Dario Nieuwenhuis
2022-05-12usb: parse request in embassy-usb instead of the driver.Dario Nieuwenhuis
2022-05-10usb: merge `alloc_control_pipe` and `into_bus` into `start`.Dario Nieuwenhuis
2022-05-09usb: merge Control logic into main code.Dario Nieuwenhuis
2022-05-09usb: simplify control in/out handlng, calling response from a single place.Dario Nieuwenhuis
2022-05-09usb: remove address arg from endpoint allocation.Dario Nieuwenhuis
2022-04-23usb: add support for custom string descriptors.Dario Nieuwenhuis
2022-04-23usb: set the interface handler in InterfaceBuilder.Dario Nieuwenhuis
2022-04-23usb: builtin handling of interface alternate settingsDario Nieuwenhuis
2022-04-16usb: improved descriptor building APIDario Nieuwenhuis
2022-04-16usb: rename UsbDeviceBuilder -> Builder.Dario Nieuwenhuis
2022-04-15usb: fix wrong logging of CONTROL OUT data.Dario Nieuwenhuis
2022-04-13Split UsbDevice::run into run and run_until_suspendalexmoon
2022-04-13Remove channel and make run future cancelablealexmoon
2022-04-13Use embassy::util::select3alexmoon
2022-04-13Make Driver::disable async and fix commentalexmoon
2022-04-13Remote wakeup bug fixesalexmoon
2022-04-13Add DeviceStateHandler, DeviceCommand channel, and remote wakeup supportalexmoon
2022-04-09Unify ReadError and WriteError into EndpointErroralexmoon
2022-04-07Async-ify Driver::enable and UsbDeviceBuilder::buildalexmoon
2022-04-06usb: abort control data in/out on reset or when receiving another SETUP.Dario Nieuwenhuis
2022-04-06usb: fix slow enumeration with EP0 max_packet_size of 8 or 16.Dario Nieuwenhuis
2022-04-06Add docserver metadata.Dario Nieuwenhuis
2022-04-06Add basic device state handling for endpoints.alexmoon
2022-04-06Simplify hid output report handlingalexmoon
2022-04-06Reduce memory overhead and simplify logic for merging endpoint and control re...alexmoon
2022-04-06usb: log on reset, resume, suspendDario Nieuwenhuis
2022-04-06usb: centralize all control logging in control.rsDario Nieuwenhuis
2022-04-06Refactor ControlPipe to use the typestate pattern for safetyalexmoon