diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-03-05 16:30:57 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-03-05 16:30:57 +0000 |
commit | 8b13f7f89a7648f5578d14b518b9c8a7fcda8144 (patch) | |
tree | 79293a15596515363ba69f7d62704f13b58753f5 /Demos/Device/LowLevel | |
parent | 1e3d892b6a7eb6770c4abf3191399c8a68aa7eaf (diff) | |
download | lufa-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/LowLevel')
-rw-r--r-- | Demos/Device/LowLevel/MassStorage/MassStorage.c | 4 |
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(); |