mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
966b0e22e5
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.
16 lines
474 B
Makefile
16 lines
474 B
Makefile
# configure the terminal program
|
|
PORT_LINUX ?= /dev/ttyUSB0
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
|
|
BAUD ?= 115200
|
|
|
|
# PROGRAMMER defaults to UM232H which is a FT232H breakout board
|
|
# externally connected using wires
|
|
PROGRAMMER_MICRODUINO_CORERF ?= UM232H
|
|
PROGRAMMER ?= $(PROGRAMMER_MICRODUINO_CORERF)
|
|
|
|
# We don't use a bootloader
|
|
BOOTLOADER_SIZE ?= 0
|
|
ROM_RESERVED ?= $(BOOTLOADER_SIZE)
|
|
|
|
include $(RIOTBOARD)/common/atmega/Makefile.include
|