aboutsummaryrefslogtreecommitdiffstats
path: root/Projects
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-12-17 20:26:14 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-12-17 20:26:14 +0000
commita57287a59f51c53e888068be954f4d8a3f04f52a (patch)
treedbcfa3412a276f6841eff5ba421e8227be44a60f /Projects
parent0381399f66bb44622a7e868621fbe910b64dc4a5 (diff)
downloadlufa-a57287a59f51c53e888068be954f4d8a3f04f52a.tar.gz
lufa-a57287a59f51c53e888068be954f4d8a3f04f52a.tar.bz2
lufa-a57287a59f51c53e888068be954f4d8a3f04f52a.zip
Fix a few more incorrectly ordered endpoint initialisations in the device demos.
Diffstat (limited to 'Projects')
-rw-r--r--Projects/TempDataLogger/TempDataLogger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/TempDataLogger/TempDataLogger.c b/Projects/TempDataLogger/TempDataLogger.c
index c3cfd65f9..e374427ea 100644
--- a/Projects/TempDataLogger/TempDataLogger.c
+++ b/Projects/TempDataLogger/TempDataLogger.c
@@ -239,8 +239,8 @@ void EVENT_USB_Device_ConfigurationChanged(void)
{
bool ConfigSuccess = true;
- ConfigSuccess &= MS_Device_ConfigureEndpoints(&Disk_MS_Interface);
ConfigSuccess &= HID_Device_ConfigureEndpoints(&Generic_HID_Interface);
+ ConfigSuccess &= MS_Device_ConfigureEndpoints(&Disk_MS_Interface);
LEDs_SetAllLEDs(ConfigSuccess ? LEDMASK_USB_READY : LEDMASK_USB_ERROR);
}