Skip to content
Snippets Groups Projects
Commit a21b30b5 authored by Micah Elizabeth Scott's avatar Micah Elizabeth Scott
Browse files

Fix usb packet struct packing

parent dc712dc2
No related branches found
No related tags found
No related merge requests found
......@@ -34,8 +34,8 @@
#include <stdint.h>
typedef struct usb_packet_struct {
uint16_t len;
struct usb_packet_struct *next;
uint16_t len;
uint8_t buf[64];
} usb_packet_t;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment