{\r
SetupHardware();\r
\r
- printf("AVRISP-MKII\r\n");\r
+ printf("AVRISP-MKII Clone\r\n");\r
\r
LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);\r
\r
/* Check to see if a V2 Protocol command has been received - if not, abort */
if (!(Endpoint_IsOUTReceived()))
- return;\r
- \r
- printf("COMMAND\r\n");
+ return;
/* Pass off processing of the V2 Protocol command to the V2 Protocol handler */
- V2Protocol_ProcessCommand();
-\r
- /* Reset Endpoint direction to OUT ready for next command */\r
- Endpoint_SetEndpointDirection(ENDPOINT_DIR_OUT);\r
+ V2Protocol_ProcessCommand();\r
}