Make DFU and CDC class bootloaders also toggle the LEDs on command activity in additi...
authorDean Camera <dean@fourwalledcubicle.com>
Sat, 23 Apr 2011 03:50:13 +0000 (03:50 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Sat, 23 Apr 2011 03:50:13 +0000 (03:50 +0000)
Bootloaders/CDC/BootloaderCDC.c
Bootloaders/DFU/BootloaderDFU.c

index ba0a629..7695e33 100644 (file)
@@ -148,6 +148,9 @@ 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)
        {
index 9f61660..fdd4d2d 100644 (file)
@@ -181,10 +181,7 @@ ISR(TIMER1_OVF_vect, ISR_BLOCK)
  *  internally.
  */
 void EVENT_USB_Device_ControlRequest(void)
-{
-       /* Get the size of the command and data from the wLength value */
-       SentCommand.DataSize = USB_ControlRequest.wLength;
-       
+{      
        /* Ignore any requests that aren't directed to the DFU interface */
        if ((USB_ControlRequest.bmRequestType & (CONTROL_REQTYPE_TYPE | CONTROL_REQTYPE_RECIPIENT)) !=
            (REQTYPE_CLASS | REQREC_INTERFACE))
@@ -192,6 +189,12 @@ void EVENT_USB_Device_ControlRequest(void)
                return;
        }
 
+       /* Activity - toggle indicator LEDs */
+       LEDs_ToggleLEDs(LEDS_LED1 | LEDS_LED2);
+
+       /* Get the size of the command and data from the wLength value */
+       SentCommand.DataSize = USB_ControlRequest.wLength;
+
        switch (USB_ControlRequest.bRequest)
        {
                case DFU_REQ_DNLOAD: