diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-23 08:45:46 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-23 08:45:46 +0000 |
commit | bb23e55f11a42f6214757483d010ebd24377caeb (patch) | |
tree | fca0df94ed5d2abf2ef6db0afa13711ca36c9569 /Demos/Device/LowLevel/MassStorage | |
parent | a3a04aa6719a891a1350179d5ac451c3e18c3bf2 (diff) | |
download | lufa-bb23e55f11a42f6214757483d010ebd24377caeb.tar.gz lufa-bb23e55f11a42f6214757483d010ebd24377caeb.tar.bz2 lufa-bb23e55f11a42f6214757483d010ebd24377caeb.zip |
Fixed MassStorage demo not clearing the reset flag when a Mass Storage Reset is issued while not processing a command.
Diffstat (limited to 'Demos/Device/LowLevel/MassStorage')
-rw-r--r-- | Demos/Device/LowLevel/MassStorage/MassStorage.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Demos/Device/LowLevel/MassStorage/MassStorage.c b/Demos/Device/LowLevel/MassStorage/MassStorage.c index 3f992c225..f0984a2b3 100644 --- a/Demos/Device/LowLevel/MassStorage/MassStorage.c +++ b/Demos/Device/LowLevel/MassStorage/MassStorage.c @@ -218,9 +218,6 @@ void MassStorage_Task(void) Endpoint_ClearStall();
Endpoint_SelectEndpoint(MASS_STORAGE_IN_EPNUM);
Endpoint_ClearStall();
-
- /* Clear the abort transfer flag */
- IsMassStoreReset = false;
}
/* Indicate ready */
@@ -232,6 +229,9 @@ void MassStorage_Task(void) LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
}
}
+
+ /* Clear the abort transfer flag */
+ IsMassStoreReset = false;
}
}
|