aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/LowLevel/LowLevel.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-05-03 14:17:24 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-05-03 14:17:24 +0000
commit01c4bef107214d5a4407a654754dc952ddd5cdba (patch)
treec21afc82e156f57618b723269492f3fdae70f778 /LUFA/Drivers/USB/LowLevel/LowLevel.h
parent6a8e27f7ee43169b9f6eb928b12e00d6306618ff (diff)
downloadlufa-01c4bef107214d5a4407a654754dc952ddd5cdba.tar.gz
lufa-01c4bef107214d5a4407a654754dc952ddd5cdba.tar.bz2
lufa-01c4bef107214d5a4407a654754dc952ddd5cdba.zip
More minor renaming of library enums and events to try to create a consistent API.
Diffstat (limited to 'LUFA/Drivers/USB/LowLevel/LowLevel.h')
-rw-r--r--LUFA/Drivers/USB/LowLevel/LowLevel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/LowLevel.h b/LUFA/Drivers/USB/LowLevel/LowLevel.h
index 3bf413745..6cc3b22a1 100644
--- a/LUFA/Drivers/USB/LowLevel/LowLevel.h
+++ b/LUFA/Drivers/USB/LowLevel/LowLevel.h
@@ -285,9 +285,9 @@
/** Enum for error codes relating to the powering on of the USB interface. These error codes are
* used in the ErrorCode parameter value of the \ref USB_PowerOnFail event.
*/
- enum USB_PowerOnErrorCodes_t
+ enum USB_InitErrorCodes_t
{
- POWERON_ERROR_NoUSBModeSpecified = 0, /**< Indicates that \ref USB_Init() was called with an
+ USB_INITERROR_NoUSBModeSpecified = 0, /**< Indicates that \ref USB_Init() was called with an
* invalid or missing Mode parameter.
*/
};
@@ -328,7 +328,7 @@
*
* \see Events.h for more information on this event.
*/
- RAISES_EVENT(USB_PowerOnFail);
+ RAISES_EVENT(USB_InitFailure);
#endif
/* Private Interface - For use in library only: */