summaryrefslogtreecommitdiff
path: root/embassy-usb
AgeCommit message (Expand)Author
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
2022-04-06Move data chunking from the driver to the libalexmoon
2022-04-06usb: cleanup and simplify error handling.Dario Nieuwenhuis
2022-04-06usb: cleanup logging.Dario Nieuwenhuis
2022-04-06usb: add -usb-serial crate, fix warnings and stable build.Dario Nieuwenhuis
2022-04-06Add handlers for standard reqs to ControlHandleralexmoon
2022-04-06Add a control_buf to UsbDevicealexmoon
2022-04-06Switch to ControlHandler owned bufs for control_in()alexmoon
2022-04-06usb: update docs on ControlHandler.Dario Nieuwenhuis
2022-04-06usb: simplify buffer handling for Control IN transfers.Dario Nieuwenhuis
2022-04-06usb: nicer names for control structs.Dario Nieuwenhuis
2022-04-06usb: move all control-related stuff to `mod control`.Dario Nieuwenhuis
2022-04-06usb: associate ControlHandlers with interfaces, automatically route requests.Dario Nieuwenhuis
2022-04-06usb: cleanup giant matches in control code.Dario Nieuwenhuis
2022-04-06usb: add `add_class` to builder, so that `FooBarClass::new(&mut builder)` can...Dario Nieuwenhuis
2022-04-06Use trait objects instead of generics for UsbDevice::classesalexmoon
2022-04-06Add support for USB classes handling control requests.alexmoon
2022-04-06Working CDC-ACM device->hostDario Nieuwenhuis
2022-04-06Working CDC-ACM host->deviceDario Nieuwenhuis
2022-04-06wip: experimental async usb stackDario Nieuwenhuis