X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/1e8df8951a3335e4b45ad0c25a82df3d90d785f3..f9c0357b731e5ca4a5456056bbbe2e4a8a2dc9fe:/Projects/Incomplete/AVRISP/AVRISP.c diff --git a/Projects/Incomplete/AVRISP/AVRISP.c b/Projects/Incomplete/AVRISP/AVRISP.c index 7564f7c18..f3634fd70 100644 --- a/Projects/Incomplete/AVRISP/AVRISP.c +++ b/Projects/Incomplete/AVRISP/AVRISP.c @@ -34,6 +34,10 @@ * the project and is responsible for the initial application hardware configuration. */ +// TODO: Add reversed target connector checks +// TODO: Add in software SPI for lower programming speeds below 125KHz +// TODO: Add in VTARGET detection + #include "AVRISP.h" /** Main program entry point. This routine contains the overall program flow, including initial @@ -44,8 +48,6 @@ int main(void) SetupHardware(); V2Params_LoadEEPROMParamValues(); - - printf("AVRISP-MKII Clone\r\n"); LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY); @@ -68,7 +70,6 @@ void SetupHardware(void) clock_prescale_set(clock_div_1); /* Hardware Initialization */ - SerialStream_Init(9600, false); LEDs_Init(); USB_Init(); }