diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-07 00:27:11 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-07 00:27:11 +0000 |
commit | 85c2716f2d37bb50d126102fcdd09fb78d26ebc5 (patch) | |
tree | affb4d9f9f10ed41df24df3d82cbc6be3959be39 /Demos/Host/LowLevel/MassStorageHost | |
parent | 33a5715e91d7fe2c0c58351a4a973352ae0e01c9 (diff) | |
download | lufa-85c2716f2d37bb50d126102fcdd09fb78d26ebc5.tar.gz lufa-85c2716f2d37bb50d126102fcdd09fb78d26ebc5.tar.bz2 lufa-85c2716f2d37bb50d126102fcdd09fb78d26ebc5.zip |
Make Benito ping-pong LED code more explicit, using masks of the TX and RX LED masks for ping-pong toggle rather than the ambiguous LED "Busy" mask.
Fix incorrect event name in MassStorageHost.c.
Diffstat (limited to 'Demos/Host/LowLevel/MassStorageHost')
-rw-r--r-- | Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c b/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c index 4f02e5128..2b27b120e 100644 --- a/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c +++ b/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c @@ -103,7 +103,7 @@ void EVENT_USB_Host_DeviceEnumerationComplete(void) }
/** Event handler for the USB_HostError event. This indicates that a hardware error occurred while in host mode. */
-void EVENT_USB_HostError(const uint8_t ErrorCode)
+void EVENT_USB_Host_HostError(const uint8_t ErrorCode)
{
USB_ShutDown();
|