diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-23 08:03:09 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-23 08:03:09 +0000 |
commit | a3a04aa6719a891a1350179d5ac451c3e18c3bf2 (patch) | |
tree | d3d73e56fe2f3aef176106780e875940c0c8b35d /Projects/MissileLauncher | |
parent | 7f81803aaa312d589f79a77d1426150dcceb29f7 (diff) | |
download | lufa-a3a04aa6719a891a1350179d5ac451c3e18c3bf2.tar.gz lufa-a3a04aa6719a891a1350179d5ac451c3e18c3bf2.tar.bz2 lufa-a3a04aa6719a891a1350179d5ac451c3e18c3bf2.zip |
Pipe_ConfigurePipe() now automatically defaults IN pipes to accepting infinite IN requests, this can still be changed by calling the existing \ref Pipe_SetFiniteINRequests() function.
Diffstat (limited to 'Projects/MissileLauncher')
-rw-r--r-- | Projects/MissileLauncher/ConfigDescriptor.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Projects/MissileLauncher/ConfigDescriptor.c b/Projects/MissileLauncher/ConfigDescriptor.c index 2a6e15256..405daa4fe 100644 --- a/Projects/MissileLauncher/ConfigDescriptor.c +++ b/Projects/MissileLauncher/ConfigDescriptor.c @@ -103,8 +103,6 @@ uint8_t ProcessConfigurationDescriptor(void) Pipe_ConfigurePipe(HID_DATA_IN_PIPE, EP_TYPE_INTERRUPT, PIPE_TOKEN_IN,
EndpointData->EndpointAddress, EndpointData->EndpointSize, PIPE_BANK_SINGLE);
- Pipe_SetInfiniteINRequests();
-
FoundEndpoints |= (1 << HID_DATA_IN_PIPE);
}
else
|