X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/dbb5f249bd057c7b292645463c52067c1da58efa..bff4dbe1897d8c19b4bb9807e76350465ca1f1c4:/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(); }