diff options
Diffstat (limited to 'LUFA/Drivers/USB/LowLevel/Host.h')
-rw-r--r-- | LUFA/Drivers/USB/LowLevel/Host.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/Host.h b/LUFA/Drivers/USB/LowLevel/Host.h index 9ce995f84..4457c07d8 100644 --- a/LUFA/Drivers/USB/LowLevel/Host.h +++ b/LUFA/Drivers/USB/LowLevel/Host.h @@ -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: */
|