From 21b37a3f5e0062fcc6f0bfdd00e13be5ecb8d896 Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Mon, 10 Feb 2020 15:05:01 +0100 Subject: [PATCH] boards/mega-xplained: Refactor avrdude conf --- boards/mega-xplained/Makefile.include | 5 ----- 1 file changed, 5 deletions(-) diff --git a/boards/mega-xplained/Makefile.include b/boards/mega-xplained/Makefile.include index c41356e72fce..7bb1a39f28b4 100644 --- a/boards/mega-xplained/Makefile.include +++ b/boards/mega-xplained/Makefile.include @@ -1,7 +1,6 @@ # Found by checking fuse settings (2048 words so 4KB) # https://www.microchip.com/DevelopmentTools/ProductDetails/atmega1284p-xpld BOOTLOADER_SIZE ?= 4K -ROM_RESERVED ?= $(BOOTLOADER_SIZE) # For backward compatibility ifneq (,$(AVRDUDE_PORT)) @@ -17,14 +16,10 @@ ifeq ($(OS),Linux) else ifeq ($(OS),Darwin) PROG_DEV ?= $(firstword $(sort $(wildcard /dev/tty.usbserial*))) endif -# avoid error if mcu signature doesn't match -FFLAGS_EXTRA += -F # configure the terminal program PORT_LINUX ?= /dev/ttyACM0 PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*))) BAUD ?= 9600 -include $(RIOTMAKE)/tools/serial.inc.mk -include $(RIOTMAKE)/tools/avrdude.inc.mk include $(RIOTBOARD)/common/atmega/Makefile.include