aboutsummaryrefslogtreecommitdiffstats
path: root/Demos
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-11-23 13:35:52 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-11-23 13:35:52 +0000
commit702bec892da743c5b2d57b6a3fa2404d4d17e928 (patch)
treee973f2215e4c66e9b287b907ff023c8f41e92140 /Demos
parent8b009bc11375cb81f048c5fb52773c35bf589b67 (diff)
downloadlufa-702bec892da743c5b2d57b6a3fa2404d4d17e928.tar.gz
lufa-702bec892da743c5b2d57b6a3fa2404d4d17e928.tar.bz2
lufa-702bec892da743c5b2d57b6a3fa2404d4d17e928.zip
Fixed misnamed SI_Host_USBTask() and SI_Host_ConfigurePipes() functions.
Diffstat (limited to 'Demos')
-rw-r--r--Demos/Host/ClassDriver/StillImageHost/StillImageHost.c6
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();
}
}