Added handler for the V2 Protocol SPI_MULTI command to the AVRISP Programmer project.

Added documentation of the makefile CDEFS values to the MagStripe project.
This commit is contained in:
Dean Camera 2009-08-19 06:25:54 +00:00
parent 083d3615d3
commit 04354ffcad
8 changed files with 165 additions and 9 deletions

View file

@ -43,6 +43,8 @@ int main(void)
{
SetupHardware();
V2Protocol_ConfigureHardware();
printf("AVRISP-MKII Clone\r\n");
LEDs_SetAllLEDs(LEDMASK_USB_NOTREADY);
@ -67,6 +69,7 @@ void SetupHardware(void)
/* Hardware Initialization */
SerialStream_Init(9600, false);
SPI_Init(0, true);
LEDs_Init();
USB_Init();
}