aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-03-05 16:30:57 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-03-05 16:30:57 +0000
commit8b13f7f89a7648f5578d14b518b9c8a7fcda8144 (patch)
tree79293a15596515363ba69f7d62704f13b58753f5 /Demos/Device
parent1e3d892b6a7eb6770c4abf3191399c8a68aa7eaf (diff)
downloadlufa-8b13f7f89a7648f5578d14b518b9c8a7fcda8144.tar.gz
lufa-8b13f7f89a7648f5578d14b518b9c8a7fcda8144.tar.bz2
lufa-8b13f7f89a7648f5578d14b518b9c8a7fcda8144.zip
Endpoint_ResetFIFO() renamed to Endpoint_ResetEndpoint(), to be consistent with the Pipe_ResetPipe() function name.
Fix undefined error in Pipe_UC3B.h. Add missing migration notes.
Diffstat (limited to 'Demos/Device')
-rw-r--r--Demos/Device/LowLevel/MassStorage/MassStorage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Device/LowLevel/MassStorage/MassStorage.c b/Demos/Device/LowLevel/MassStorage/MassStorage.c
index cbfef0fbf..d6345e386 100644
--- a/Demos/Device/LowLevel/MassStorage/MassStorage.c
+++ b/Demos/Device/LowLevel/MassStorage/MassStorage.c
@@ -199,8 +199,8 @@ void MassStorage_Task(void)
if (IsMassStoreReset)
{
/* Reset the data endpoint banks */
- Endpoint_ResetFIFO(MASS_STORAGE_OUT_EPNUM);
- Endpoint_ResetFIFO(MASS_STORAGE_IN_EPNUM);
+ Endpoint_ResetEndpoint(MASS_STORAGE_OUT_EPNUM);
+ Endpoint_ResetEndpoint(MASS_STORAGE_IN_EPNUM);
Endpoint_SelectEndpoint(MASS_STORAGE_OUT_EPNUM);
Endpoint_ClearStall();