Moved USB Host state machine code out from USBTask.c and into Host.c, where it more properly belongs.

This commit is contained in:
Dean Camera 2009-05-13 14:13:57 +00:00
parent da007db18d
commit 4904b10ef6
8 changed files with 182 additions and 176 deletions

View file

@ -265,8 +265,12 @@
};
/* Function Prototypes: */
void USB_Host_ProcessNextHostState(void);
uint8_t USB_Host_WaitMS(uint8_t MS);
void USB_Host_ResetDevice(void);
#if defined(INCLUDE_FROM_HOST_C)
static void USB_Host_ResetDevice(void);
#endif
#endif
/* Disable C linkage for C++ Compilers: */