aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/usb/usbproto.rs
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/usb/usbproto.rs')
-rw-r--r--app/src/usb/usbproto.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/src/usb/usbproto.rs b/app/src/usb/usbproto.rs
index 9a86ed7..9c1dbcb 100644
--- a/app/src/usb/usbproto.rs
+++ b/app/src/usb/usbproto.rs
@@ -7,7 +7,7 @@
// documentation.
#[derive(Copy, Clone, Debug, Default)]
-#[repr(C, packed)]
+#[repr(C)]
pub struct USBDeviceDescriptor {
pub b_length: u8,
pub b_descriptor_type: u8,
@@ -26,7 +26,7 @@ pub struct USBDeviceDescriptor {
}
#[derive(Copy, Clone, Debug, Default)]
-#[repr(C, packed)]
+#[repr(C)]
pub struct USBConfigurationDescriptor {
pub b_length: u8,
pub b_descriptor_type: u8,
@@ -39,7 +39,7 @@ pub struct USBConfigurationDescriptor {
}
#[derive(Copy, Clone, Debug, Default)]
-#[repr(C, packed)]
+#[repr(C)]
pub struct USBInterfaceDescriptor {
pub b_length: u8,
pub b_descriptor_type: u8,
@@ -53,7 +53,7 @@ pub struct USBInterfaceDescriptor {
}
#[derive(Copy, Clone, Debug, Default)]
-#[repr(C, packed)]
+#[repr(C)]
pub struct USBEndpointDescriptor {
pub b_length: u8,
pub b_descriptor_type: u8,
@@ -64,7 +64,7 @@ pub struct USBEndpointDescriptor {
}
#[derive(Copy, Clone, Debug)]
-#[repr(C, packed)]
+#[repr(C)]
pub struct USBSetupPacket {
pub bm_request_type: BMRequestType,
pub b_request: USBRequest,