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:
parent
083d3615d3
commit
04354ffcad
8 changed files with 165 additions and 9 deletions
|
@ -40,6 +40,7 @@
|
|||
#include <avr/io.h>
|
||||
|
||||
#include <LUFA/Drivers/USB/USB.h>
|
||||
#include <LUFA/Drivers/Peripheral/SPI.h>
|
||||
|
||||
#include "../Descriptors.h"
|
||||
#include "V2ProtocolConstants.h"
|
||||
|
@ -55,13 +56,15 @@
|
|||
uint8_t ParameterValue;
|
||||
} ParameterItem_t;
|
||||
|
||||
/* Function Prototypes: */
|
||||
/* Function Prototypes: */
|
||||
void V2Protocol_ConfigureHardware(void);
|
||||
void V2Protocol_ProcessCommand(void);
|
||||
|
||||
#if defined(INCLUDE_FROM_V2PROTOCOL_C)
|
||||
static ParameterItem_t* V2Protocol_GetParameterItem(uint8_t ParamID);
|
||||
static void V2Protocol_ProcessCmdSignOn(void);
|
||||
static void V2Protocol_ProcessCmdGetSetParam(uint8_t V2Command);
|
||||
static void V2Protocol_ProcessCmdSPIMulti(void);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue