aboutsummaryrefslogtreecommitdiff
path: root/Projects/TempDataLogger/TempDataLogger.c
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-12-17 20:26:14 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-12-17 20:26:14 +0000
commit7dcebbfee8be24c26fe011a1e54b871c7e1b5b3d (patch)
treedbcfa3412a276f6841eff5ba421e8227be44a60f /Projects/TempDataLogger/TempDataLogger.c
parenta6c88680b64c955a1a7b36b0e76c2484fa79d15a (diff)
Fix a few more incorrectly ordered endpoint initialisations in the device demos.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1607 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects/TempDataLogger/TempDataLogger.c')
-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 c3cfd65f..e374427e 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);
}