diff options
author | Brian Cully <bjc@kublai.com> | 2019-07-28 10:01:49 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2019-07-28 10:01:49 -0400 |
commit | b1ef816d00ad5fb6048007611c5b091e2540c306 (patch) | |
tree | 2b46c3c768518669f9e921f9c5a59a362cc4309c /usbh/src/pipe.rs | |
parent | 3a9c8e5c3524d2cf19a5ce3181af9ccb0337650f (diff) | |
download | samd21-demo-b1ef816d00ad5fb6048007611c5b091e2540c306.tar.gz samd21-demo-b1ef816d00ad5fb6048007611c5b091e2540c306.zip |
Rename basic USB protocol types.
Diffstat (limited to 'usbh/src/pipe.rs')
-rw-r--r-- | usbh/src/pipe.rs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/usbh/src/pipe.rs b/usbh/src/pipe.rs index e17bec5..936aa23 100644 --- a/usbh/src/pipe.rs +++ b/usbh/src/pipe.rs @@ -92,8 +92,8 @@ pub(crate) struct Pipe<'a, 'b> { impl Pipe<'_, '_> { pub(crate) fn control_req( &mut self, - bm_request_type: BMRequestType, - b_request: USBRequest, + bm_request_type: RequestType, + b_request: RequestCode, w_value: WValue, w_index: u16, buf: Option<DataBuf>, @@ -110,7 +110,7 @@ impl Pipe<'_, '_> { /* * Setup stage. */ - let mut setup_packet = USBSetupPacket { + let mut setup_packet = SetupPacket { bm_request_type: bm_request_type, b_request: b_request, w_value: w_value, @@ -133,6 +133,8 @@ impl Pipe<'_, '_> { */ self.dtgl_set(); if let Some(b) = buf { + // TODO: data stage, has up to 5,000ms (in 500ms + // per-packet chunks) to complete. cf §9.2.6.4 of USB 2.0. match bm_request_type.direction() { USBSetupDirection::DeviceToHost => { trace!("buf0: {:?}", &b); @@ -149,6 +151,8 @@ impl Pipe<'_, '_> { /* * Status stage. */ + // TODO: status stage has up to 50ms to complete. cf §9.2.6.4 + // of USB 2.0. self.dtgl_set(); self.desc.bank0.pcksize.write(|w| { unsafe { w.byte_count().bits(0) }; |