1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/arduino-uno/Makefile.include
Laurent Navet 80cf8389a8 boards: add arduino uno and duemilanove support
Uno and Duemilanove(atmega328p version) are nearly the same boards.
The only difference is that the Duemilanove use an FTDI usb chip,
while the Uno use an Atmel which acts as USB/Serial converter.
All of the code needed to support these boards is in arduino-common.
2016-09-21 21:11:01 +02:00

11 lines
265 B
Makefile

USEMODULE += arduino-common
# add arduino-common include path
INCLUDES += -I$(RIOTBOARD)/arduino-common/include
# export needed for flash rule
export LINUX_PORT = /dev/ttyACM0
export PROGRAMMER_SPEED = 115200
include $(RIOTBOARD)/arduino-common/Makefile.include