1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #ifndef _USBDEVICEMODE_H_
- #define _USBDEVICEMODE_H_
-
- #include <LUFA/Drivers/USB/USB.h>
- #include "Webserver.h"
- #include "Descriptors.h"
- #include "Lib/uIPManagement.h"
- #include "Lib/SCSI.h"
- #include "Config/AppConfig.h"
-
- extern USB_ClassInfo_RNDIS_Device_t Ethernet_RNDIS_Interface_Device;
-
- void USBDeviceMode_USBTask(void);
- void EVENT_USB_Device_Connect(void);
- void EVENT_USB_Device_Disconnect(void);
- void EVENT_USB_Device_ConfigurationChanged(void);
- void EVENT_USB_Device_ControlRequest(void);
- bool CALLBACK_MS_Device_SCSICommandReceived(USB_ClassInfo_MS_Device_t* const MSInterfaceInfo);
- #endif
|