aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Unfinished/AVRISP/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-08-19 06:25:54 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-08-19 06:25:54 +0000
commit04354ffcadfebb0d1c5bd010cf126ae3c126f231 (patch)
tree1630a6e899ad198f7b71dddd0435da7749ad681c /Projects/Unfinished/AVRISP/makefile
parent083d3615d327a90aeaed9adc74eb997315daaafd (diff)
downloadlufa-04354ffcadfebb0d1c5bd010cf126ae3c126f231.tar.gz
lufa-04354ffcadfebb0d1c5bd010cf126ae3c126f231.tar.bz2
lufa-04354ffcadfebb0d1c5bd010cf126ae3c126f231.zip
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.
Diffstat (limited to 'Projects/Unfinished/AVRISP/makefile')
-rw-r--r--Projects/Unfinished/AVRISP/makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Projects/Unfinished/AVRISP/makefile b/Projects/Unfinished/AVRISP/makefile
index 5f7657587..0877c5d77 100644
--- a/Projects/Unfinished/AVRISP/makefile
+++ b/Projects/Unfinished/AVRISP/makefile
@@ -193,6 +193,11 @@ CSTANDARD = -std=gnu99
# Place -D or -U options here for C sources
CDEFS = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD) $(LUFA_OPTS)
+CDEFS += -DRESET_LINE_PORT=PORTA
+CDEFS += -DRESET_LINE_PIN=PINA
+CDEFS += -DRESET_LINE_DDR=DDRA
+CDEFS += -DRESET_LINE_MASK="(1 << 0)"
+
# Place -D or -U options here for ASM sources
ADEFS = -DF_CPU=$(F_CPU)