diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-23 13:35:52 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-23 13:35:52 +0000 |
commit | 702bec892da743c5b2d57b6a3fa2404d4d17e928 (patch) | |
tree | e973f2215e4c66e9b287b907ff023c8f41e92140 /Demos/Host | |
parent | 8b009bc11375cb81f048c5fb52773c35bf589b67 (diff) | |
download | lufa-702bec892da743c5b2d57b6a3fa2404d4d17e928.tar.gz lufa-702bec892da743c5b2d57b6a3fa2404d4d17e928.tar.bz2 lufa-702bec892da743c5b2d57b6a3fa2404d4d17e928.zip |
Fixed misnamed SI_Host_USBTask() and SI_Host_ConfigurePipes() functions.
Diffstat (limited to 'Demos/Host')
-rw-r--r-- | Demos/Host/ClassDriver/StillImageHost/StillImageHost.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Demos/Host/ClassDriver/StillImageHost/StillImageHost.c b/Demos/Host/ClassDriver/StillImageHost/StillImageHost.c index d5ed71a54..fb3a78448 100644 --- a/Demos/Host/ClassDriver/StillImageHost/StillImageHost.c +++ b/Demos/Host/ClassDriver/StillImageHost/StillImageHost.c @@ -85,8 +85,8 @@ int main(void) break;
}
- if (SI_Host_ConfigurePipes(&DigitalCamera_SI_Interface,
- ConfigDescriptorSize, ConfigDescriptorData) != SI_ENUMERROR_NoError)
+ if (SImage_Host_ConfigurePipes(&DigitalCamera_SI_Interface,
+ ConfigDescriptorSize, ConfigDescriptorData) != SI_ENUMERROR_NoError)
{
printf("Attached Device Not a Valid CDC Class Device.\r\n");
LEDs_SetAllLEDs(LEDMASK_USB_ERROR);
@@ -141,7 +141,7 @@ int main(void) break;
}
- SI_Host_USBTask(&DigitalCamera_SI_Interface);
+ SImage_Host_USBTask(&DigitalCamera_SI_Interface);
USB_USBTask();
}
}
|