mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
c1c25b0644
- Use the common logic to translate from a bootloader to concrete flasher flags - Extended documentation on how to use optiboot as alternative bootloader, as the stock bootloader is affected by a bug preventing the use of RIOT's pm_reboot() implementation
10 lines
289 B
Makefile
10 lines
289 B
Makefile
# configure the terminal program
|
|
PORT_LINUX ?= /dev/ttyUSB0
|
|
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
|
|
BAUD ?= 9600
|
|
|
|
ARDUINO_NANO_BOOTLOADER ?= atmegaboot
|
|
BOOTLOADER ?= $(ARDUINO_NANO_BOOTLOADER)
|
|
|
|
include $(RIOTBOARD)/common/arduino-atmega/Makefile.include
|