Enum kernel::hil::usb::CtrlInResult
[−]
[src]
pub enum CtrlInResult {
Packet(usize, bool),
Delay,
Error,
}Variants
Packet(usize, bool)A packet of the given size was written into the endpoint buffer
DelayThe client is not yet able to provide data to the host, but may be able to in the future. This result causes the controller to send a NAK token to the host.
ErrorThe client does not support the request. This result causes the controller to send a STALL token to the host.