aboutsummaryrefslogtreecommitdiff
path: root/bootloaders/caterina_LUFA/Caterina.c
diff options
context:
space:
mode:
authorZach Eveland <zeveland@blacklabel-development.com>2012-01-19 21:31:51 -0500
committerZach Eveland <zeveland@blacklabel-development.com>2012-01-19 21:31:51 -0500
commit98a50871fb357f5b16ec2201bcbae660ad1e6b5d (patch)
treede3354b71d690f3c2642e0690f4a91f90c1582c1 /bootloaders/caterina_LUFA/Caterina.c
parente650b85ca58eeb795ba851227e2474576e0f18a1 (diff)
stripped all LUFA LED control. from LUFA-based Caterina
Diffstat (limited to 'bootloaders/caterina_LUFA/Caterina.c')
-rwxr-xr-xbootloaders/caterina_LUFA/Caterina.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/bootloaders/caterina_LUFA/Caterina.c b/bootloaders/caterina_LUFA/Caterina.c
index da7e7ba..dba00e3 100755
--- a/bootloaders/caterina_LUFA/Caterina.c
+++ b/bootloaders/caterina_LUFA/Caterina.c
@@ -66,9 +66,6 @@ int main(void)
/* Setup hardware required for the bootloader */
SetupHardware();
- /* Turn on first LED on the board to indicate that the bootloader has started */
- LEDs_SetAllLEDs(LEDS_LED1);
-
/* Enable global interrupts so that the USB stack can function */
sei();
@@ -103,7 +100,6 @@ void SetupHardware(void)
/* Initialize USB Subsystem */
USB_Init();
- LEDs_Init();
/* Bootloader active LED toggle timer initialization */
TIMSK1 = (1 << TOIE1);
@@ -113,7 +109,7 @@ void SetupHardware(void)
/** ISR to periodically toggle the LEDs on the board to indicate that the bootloader is active. */
ISR(TIMER1_OVF_vect, ISR_BLOCK)
{
- LEDs_ToggleLEDs(LEDS_LED1 | LEDS_LED2);
+
}
/** Event handler for the USB_ConfigurationChanged event. This configures the device's endpoints ready
@@ -148,9 +144,6 @@ void EVENT_USB_Device_ControlRequest(void)
return;
}
- /* Activity - toggle indicator LEDs */
- LEDs_ToggleLEDs(LEDS_LED1 | LEDS_LED2);
-
/* Process CDC specific control requests */
switch (USB_ControlRequest.bRequest)
{