diff options
Diffstat (limited to 'Projects/Incomplete/AVRISP/makefile')
-rw-r--r-- | Projects/Incomplete/AVRISP/makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Projects/Incomplete/AVRISP/makefile b/Projects/Incomplete/AVRISP/makefile index 958d9abae..b9aee4848 100644 --- a/Projects/Incomplete/AVRISP/makefile +++ b/Projects/Incomplete/AVRISP/makefile @@ -60,7 +60,7 @@ # MCU name
-MCU = at90usb1287
+MCU = at90usb647
# Target board (see library "Board Types" documentation, USER or blank for projects not requiring
@@ -194,9 +194,9 @@ 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_DDR=DDRA
-CDEFS += -DRESET_LINE_MASK="(1 << 0)"
+CDEFS += -DRESET_LINE_PORT=PORTB
+CDEFS += -DRESET_LINE_DDR=DDRB
+CDEFS += -DRESET_LINE_MASK="(1 << 4)"
# Place -D or -U options here for ASM sources
|