From c6541a1fd78e4cadb738b2b91a39836df0a9aeb3 Mon Sep 17 00:00:00 2001 From: Zachary Levy Date: Thu, 2 Apr 2026 14:14:59 -0700 Subject: [PATCH] USB type alias --- node/src/stm32/usb.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/src/stm32/usb.rs b/node/src/stm32/usb.rs index e69e9a8..393cba7 100644 --- a/node/src/stm32/usb.rs +++ b/node/src/stm32/usb.rs @@ -8,8 +8,8 @@ use embassy_usb::driver::{Driver as UsbDriverTrait, EndpointIn, EndpointOut}; use embassy_usb::UsbDevice; type UsbDriver = StmUsbDriver<'static, USB_OTG_FS>; -type InterIn = >::EndpointIn; -type InterOut = >::EndpointOut; +pub type InterIn = >::EndpointIn; +pub type InterOut = >::EndpointOut; pub type TypedUSB = UsbDevice<'static, UsbDriver>;