aboutsummaryrefslogtreecommitdiff
path: root/LUFA/Drivers/USB/Core
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-03-03 19:32:27 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-03-03 19:32:27 +0000
commitec5da38d0918b50a61dcee0c044ee3c7c6b56e90 (patch)
tree088d03b46dcaba731c43271505d291d6b1e6e27c /LUFA/Drivers/USB/Core
parent54a063c1448d108fcbe60242047e4f818e4ce5e3 (diff)
Fixed Still Image Host class driver exiting the descriptor search routine prematurely if the data pipes (but not event pipe) is found.
Fixed missing call to Pipe_SetInfiniteINRequests() in the Pipe_ConfigurePipe() routine. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1694 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Drivers/USB/Core')
-rw-r--r--LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c b/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c
index 2073c8ef..48445293 100644
--- a/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c
+++ b/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.c
@@ -87,6 +87,8 @@ bool Pipe_ConfigurePipe(const uint8_t Number,
UPIENXTemp = UPIENX;
}
+ Pipe_SetInfiniteINRequests();
+
if (!(UPCFG1XTemp & (1 << ALLOC)))
continue;