X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/bcf07edeb2a172dd3aeef07908f3b7e9b235a164..86db035b1efaecffdbe8a189c97e8897d35501ca:/Projects/AVRISP/AVRISP.c diff --git a/Projects/AVRISP/AVRISP.c b/Projects/AVRISP/AVRISP.c index 203fced45..c0572fca2 100644 --- a/Projects/AVRISP/AVRISP.c +++ b/Projects/AVRISP/AVRISP.c @@ -123,8 +123,12 @@ void Process_AVRISP_Commands(void) /* Check to see if a V2 Protocol command has been received */ if (Endpoint_IsOUTReceived()) { + LEDs_SetAllLEDs(LEDMASK_BUSY); + /* Pass off processing of the V2 Protocol command to the V2 Protocol handler */ V2Protocol_ProcessCommand(); + + LEDs_SetAllLEDs(LEDMASK_USB_READY); } }