aboutsummaryrefslogtreecommitdiff
path: root/Demos/Host/ClassDriver/StillImageHost/StillImageHost.c
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-11-23 13:35:52 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-11-23 13:35:52 +0000
commite9da4d4a097dbf9d89b5035487bd2a2556c228ed (patch)
treee973f2215e4c66e9b287b907ff023c8f41e92140 /Demos/Host/ClassDriver/StillImageHost/StillImageHost.c
parentb03f8ca192ab4b1dcc6bf009ad468f0cb6c1a64a (diff)
Fixed misnamed SI_Host_USBTask() and SI_Host_ConfigurePipes() functions.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@912 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Host/ClassDriver/StillImageHost/StillImageHost.c')
-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 d5ed71a5..fb3a7844 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();
}
}