boards/microduino-corerf: Fix duplicated includes
avrdude.mk and serial.mk was included twice. As a result of the former, avrdude wasted one flash cycle and some time by writing the same firmware twice.
This commit is contained in:
parent
673ba21b9e
commit
966b0e22e5
@ -2,7 +2,6 @@
|
|||||||
PORT_LINUX ?= /dev/ttyUSB0
|
PORT_LINUX ?= /dev/ttyUSB0
|
||||||
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
|
||||||
BAUD ?= 115200
|
BAUD ?= 115200
|
||||||
include $(RIOTMAKE)/tools/serial.inc.mk
|
|
||||||
|
|
||||||
# PROGRAMMER defaults to UM232H which is a FT232H breakout board
|
# PROGRAMMER defaults to UM232H which is a FT232H breakout board
|
||||||
# externally connected using wires
|
# externally connected using wires
|
||||||
@ -13,5 +12,4 @@ PROGRAMMER ?= $(PROGRAMMER_MICRODUINO_CORERF)
|
|||||||
BOOTLOADER_SIZE ?= 0
|
BOOTLOADER_SIZE ?= 0
|
||||||
ROM_RESERVED ?= $(BOOTLOADER_SIZE)
|
ROM_RESERVED ?= $(BOOTLOADER_SIZE)
|
||||||
|
|
||||||
include $(RIOTMAKE)/tools/avrdude.inc.mk
|
|
||||||
include $(RIOTBOARD)/common/atmega/Makefile.include
|
include $(RIOTBOARD)/common/atmega/Makefile.include
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user