mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
e958798225
The MCU can handle that baud rate just fine. A standard baud rate is much easier to use than those awkward 57600 baud.
18 lines
555 B
Makefile
18 lines
555 B
Makefile
# configure the terminal program
|
|
PORT_LINUX ?= /dev/ttyUSB0
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
|
|
BAUD ?= 115200
|
|
include $(RIOTMAKE)/tools/serial.inc.mk
|
|
|
|
# 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 $(RIOTMAKE)/tools/avrdude.inc.mk
|
|
include $(RIOTBOARD)/common/atmega/Makefile.include
|