14 lines
260 B
C
14 lines
260 B
C
#ifndef _USBH_XXX_H
|
|
#define _USBH_XXX_H
|
|
|
|
#include "usb_xxx.h"
|
|
|
|
struct usbh_xxx {
|
|
struct usbh_hubport *hport;
|
|
|
|
uint8_t intf; /* interface number */
|
|
usbh_pipe_t intin; /* INTR IN endpoint */
|
|
usbh_pipe_t intout; /* INTR OUT endpoint */
|
|
};
|
|
|
|
#endif |