undo T:regs in impl UsbPeripheral

This commit is contained in:
Jacob Rosenthal 2021-12-15 11:00:55 -07:00
parent 50f151e6bc
commit cfb5e8df57

View file

@ -15,7 +15,8 @@ pub struct UsbBus<'d, T: Instance> {
}
unsafe impl<'d, T: Instance> UsbPeripheral for UsbBus<'d, T> {
const REGISTERS: *const () = T::regs as *const ();
// todo how to use T::regs
const REGISTERS: *const () = pac::USBD::ptr() as *const ();
}
impl<'d, T: Instance> UsbBus<'d, T> {