aboutsummaryrefslogtreecommitdiffstats
path: root/usbh/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'usbh/src/lib.rs')
-rwxr-xr-xusbh/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/usbh/src/lib.rs b/usbh/src/lib.rs
index 1cd8a1a..63b28ba 100755
--- a/usbh/src/lib.rs
+++ b/usbh/src/lib.rs
@@ -6,7 +6,7 @@ mod pipe;
mod usbproto;
use device::DeviceTable;
-use pipe::{PipeErr, PipeTable, USBPipeType, NO_DATA_STAGE};
+use pipe::{PType, PipeErr, PipeTable, NO_DATA_STAGE};
use rb::{Reader, RingBuffer, Writer};
use usbproto::*;
@@ -399,7 +399,7 @@ where
let speed = self.usb.host().status.read().speed().bits();
let pipe = self.pipe_table.pipe_for(self.usb.host_mut(), 0, 0);
pipe.regs.cfg.write(|w| {
- unsafe { w.ptype().bits(USBPipeType::Control as u8) };
+ unsafe { w.ptype().bits(PType::Control as u8) };
w.bk().clear_bit()
});
pipe.desc.bank0.pcksize.write(|w| match speed {