mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
Stopped building .eep file since it was causing errors and we don't need it.
This commit is contained in:
parent
dceca6a39b
commit
cddebf41cc
@ -47,9 +47,8 @@
|
||||
|
||||
PORT = /dev/tty.usbserial*
|
||||
TARGET = foo
|
||||
ARDUINO = /Applications/arduino-0005/lib/targets/arduino
|
||||
SRC = $(ARDUINO)/buffer.c $(ARDUINO)/pins_arduino.c \
|
||||
$(ARDUINO)/Serial.c $(ARDUINO)/uart.c $(ARDUINO)/wiring.c
|
||||
ARDUINO = /Applications/arduino-0007/lib/targets/arduino
|
||||
SRC = $(ARDUINO)/pins_arduino.c $(ARDUINO)/wiring.c $(ARDUINO)/WInterrupts.c
|
||||
CXXSRC = $(TARGET).cpp $(ARDUINO)/HardwareSerial.cpp $(ARDUINO)/WRandom.cpp
|
||||
MCU = atmega8
|
||||
F_CPU = 16000000
|
||||
@ -125,7 +124,7 @@ ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)
|
||||
# Default target.
|
||||
all: build
|
||||
|
||||
build: elf hex eep
|
||||
build: elf hex
|
||||
|
||||
elf: $(TARGET).elf
|
||||
hex: $(TARGET).hex
|
||||
@ -134,7 +133,7 @@ lss: $(TARGET).lss
|
||||
sym: $(TARGET).sym
|
||||
|
||||
# Program the device.
|
||||
upload: $(TARGET).hex $(TARGET).eep
|
||||
upload: $(TARGET).hex
|
||||
$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user