Remove serial driver use from the AVRISP project now that it is no longer needed.
This commit is contained in:
parent
9decc2bc59
commit
18b0d408a9
7 changed files with 3 additions and 9 deletions
|
@ -51,8 +51,6 @@ void V2Protocol_ProcessCommand(void)
|
|||
{
|
||||
uint8_t V2Command = Endpoint_Read_Byte();
|
||||
|
||||
Serial_TxByte(V2Command);
|
||||
|
||||
switch (V2Command)
|
||||
{
|
||||
case CMD_SIGN_ON:
|
||||
|
|
|
@ -39,7 +39,6 @@
|
|||
/* Includes: */
|
||||
#include <LUFA/Drivers/USB/USB.h>
|
||||
#include <LUFA/Drivers/Peripheral/SPI.h>
|
||||
#include <LUFA/Drivers/Peripheral/Serial.h>
|
||||
|
||||
#include "../Descriptors.h"
|
||||
#include "V2ProtocolConstants.h"
|
||||
|
|
|
@ -44,7 +44,7 @@ uint32_t XPROG_Param_NVMBase = 0x010001C0;
|
|||
uint32_t XPROG_Param_EEPageSize;
|
||||
|
||||
/** Currently selected XPROG programming protocol */
|
||||
uint8_t XPROG_SelectedProtocol;
|
||||
uint8_t XPROG_SelectedProtocol = XPRG_PROTOCOL_PDI;
|
||||
|
||||
|
||||
/** Handler for the CMD_XPROG_SETMODE command, which sets the programmer-to-target protocol used for PDI/TPI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue