Correct include paths and makefile for the AVRISP project now that the protocol handlers are in seperate directories.
This commit is contained in:
parent
31d7194252
commit
26bc1f3cfd
8 changed files with 23 additions and 20 deletions
|
@ -39,7 +39,9 @@
|
|||
/* Includes: */
|
||||
#include <avr/io.h>
|
||||
|
||||
#include "V2Protocol.h"
|
||||
#include <LUFA/Drivers/USB/USB.h>
|
||||
|
||||
#include "../V2Protocol.h"
|
||||
|
||||
/* Preprocessor Checks: */
|
||||
#if ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1))
|
||||
|
|
|
@ -43,9 +43,7 @@
|
|||
#include <LUFA/Drivers/USB/USB.h>
|
||||
#include <LUFA/Drivers/Peripheral/SPI.h>
|
||||
|
||||
#include "../Descriptors.h"
|
||||
#include "V2ProtocolConstants.h"
|
||||
#include "V2ProtocolParams.h"
|
||||
#include "../V2ProtocolParams.h"
|
||||
|
||||
/* Preprocessor Checks: */
|
||||
#if ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1))
|
||||
|
|
|
@ -40,8 +40,10 @@
|
|||
#include <avr/io.h>
|
||||
#include <util/delay.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <LUFA/Drivers/USB/USB.h>
|
||||
|
||||
#include "V2Protocol.h"
|
||||
#include "../V2Protocol.h"
|
||||
#include "PDITarget.h"
|
||||
#include "XMEGANVM.h"
|
||||
|
||||
|
|
|
@ -40,8 +40,9 @@
|
|||
#include <avr/io.h>
|
||||
#include <util/delay.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "V2Protocol.h"
|
||||
|
||||
#include <LUFA/Drivers/USB/USB.h>
|
||||
|
||||
#include "TPITarget.h"
|
||||
#include "TINYNVM.h"
|
||||
|
||||
|
|
|
@ -43,9 +43,9 @@
|
|||
#include "../Descriptors.h"
|
||||
#include "V2ProtocolConstants.h"
|
||||
#include "V2ProtocolParams.h"
|
||||
#include "ISPProtocol.h"
|
||||
#include "PDIProtocol.h"
|
||||
#include "TPIProtocol.h"
|
||||
#include "ISP/ISPProtocol.h"
|
||||
#include "PDI/PDIProtocol.h"
|
||||
#include "TPI/TPIProtocol.h"
|
||||
|
||||
/* Preprocessor Checks: */
|
||||
#if ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1))
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
|
||||
#include "V2Protocol.h"
|
||||
#include "V2ProtocolConstants.h"
|
||||
#include "ISPTarget.h"
|
||||
#include "ISP/ISPTarget.h"
|
||||
|
||||
/* Macros: */
|
||||
/** Parameter privilege mask to allow the host PC to read the parameter's value */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue