mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ff53159f0e
- No longer include `tools/serial.mk` and `tools/avrdude.mk`, as this is no done by `boards/common/atmega` - No longer provide `RESET ?=`, as this is now done in `tools/avrdude.mk` for all ATmega boards unless they are using a bootloader
12 lines
338 B
Makefile
12 lines
338 B
Makefile
# configure the terminal program
|
|
PORT_LINUX ?= /dev/ttyACM0
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
|
|
BAUD ?= 115200
|
|
# Use EDBG (xplainedpro) programmer with avrdude
|
|
PROGRAMMER ?= xplainedpro
|
|
|
|
# Use edbg interface for debugging
|
|
DEBUGSERVER_INTERFACE ?= --edbg
|
|
|
|
include $(RIOTBOARD)/common/atmega/Makefile.include
|