aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-09-19 08:42:30 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-09-19 08:42:30 +0000
commited7067e89f4adc1c5b9317caa0253d866ad2bf56 (patch)
treef6668af0a7e123670e0e16d253bbf0dc6d071457 /Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c
parentd66a925786e4e57713a2c902cdffe7269db43226 (diff)
downloadlufa-ed7067e89f4adc1c5b9317caa0253d866ad2bf56.tar.gz
lufa-ed7067e89f4adc1c5b9317caa0253d866ad2bf56.tar.bz2
lufa-ed7067e89f4adc1c5b9317caa0253d866ad2bf56.zip
Rename internal suspend and wake up USB interrupt macros so that they follow the same naming scheme as the other USB ISR macros.
Diffstat (limited to 'Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c')
-rw-r--r--Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c b/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c
index 8d1cae9ad..e2a2128e9 100644
--- a/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c
+++ b/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c
@@ -62,14 +62,12 @@ USB_ClassInfo_HID_Device_t Mouse_HID_Device_Interface =
/** Event handler for the library USB WakeUp event. */
void EVENT_USB_Device_Connect(void)
{
- puts_P(PSTR("Device Connected.\r\n"));
LEDs_SetAllLEDs(LEDMASK_USB_ENUMERATING);
}
/** Event handler for the library USB Suspend event. */
void EVENT_USB_Device_Disconnect(void)
{
- puts_P(PSTR("Device Disconnected.\r\n"));
LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
}