Skip to content
Snippets Groups Projects
Commit 1a98d64c authored by Francisco Acosta's avatar Francisco Acosta Committed by kYc0o
Browse files

boards/arduino*: use common avrdude.inc.mk from atmega_common

Leverages common flasher (avrdude) and removes unnecessary exports.
Moreover, a reuse of serial.inc.mk is perfomed from the same
atmega_common/Makefile.include
parent 2bdcdddd
No related branches found
No related tags found
No related merge requests found
...@@ -3,16 +3,19 @@ export CPU = atmega328p ...@@ -3,16 +3,19 @@ export CPU = atmega328p
USEMODULE += boards_common_arduino-atmega USEMODULE += boards_common_arduino-atmega
#export needed for flash rule # configure the terminal program
export PORT_LINUX ?= /dev/ttyUSB0 PORT_LINUX ?= /dev/ttyUSB0
export PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*))) PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
export PROGRAMMER_SPEED ?= 57600 BAUD ?= 9600
export FFLAGS += -p m328p # PROGRAMMER defaults to arduino which is the internal flasher via USB
# using avrdude. Can be overridden for debugging (which requires changes
# PROGRAMMER defaults to arduino which is the internal flasher via USB. Can be # that require to use an ISP)
# overridden for debugging (which requires changes that require to use an ISP) PROGRAMMER ?= arduino
export PROGRAMMER ?= arduino # set mcu model for avrdude
FFLAGS += -p m328p
# configure programmer speed in baud
FFLAGS_EXTRA += -b 57600
BOOTLOADER_SIZE ?= 2K BOOTLOADER_SIZE ?= 2K
ROM_RESERVED ?= $(BOOTLOADER_SIZE) ROM_RESERVED ?= $(BOOTLOADER_SIZE)
......
...@@ -3,16 +3,19 @@ export CPU = atmega2560 ...@@ -3,16 +3,19 @@ export CPU = atmega2560
USEMODULE += boards_common_arduino-atmega USEMODULE += boards_common_arduino-atmega
#export needed for flash rule # configure the terminal program
export PORT_LINUX ?= /dev/ttyACM0 PORT_LINUX ?= /dev/ttyACM0
export PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*))) PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
export PROGRAMMER_SPEED ?= 115200 BAUD ?= 9600
export FFLAGS += -p m2560 # PROGRAMMER defaults to stk500v2 which is the internal flasher via USB
# using avrdude. Can be overridden for debugging (which requires changes
# PROGRAMMER defaults to stk500v2 which is the internal flasher via USB. Can be # that require to use an ISP)
# overridden for debugging (which requires changes that require to use an ISP) PROGRAMMER ?= stk500v2
export PROGRAMMER ?= stk500v2 # set mcu model for avrdude
FFLAGS += -p m2560
# configure programmer speed in baud
FFLAGS_EXTRA += -b 115200
BOOTLOADER_SIZE ?= 8K BOOTLOADER_SIZE ?= 8K
ROM_RESERVED ?= $(BOOTLOADER_SIZE) ROM_RESERVED ?= $(BOOTLOADER_SIZE)
......
...@@ -3,16 +3,19 @@ export CPU = atmega328p ...@@ -3,16 +3,19 @@ export CPU = atmega328p
USEMODULE += boards_common_arduino-atmega USEMODULE += boards_common_arduino-atmega
# export needed for flash rule # configure the terminal program
export PORT_LINUX ?= /dev/ttyACM0 PORT_LINUX ?= /dev/ttyACM0
export PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*))) PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
export PROGRAMMER_SPEED ?= 115200 BAUD ?= 9600
export FFLAGS += -p m328p # PROGRAMMER defaults to stk500v2 which is the internal flasher via USB
# using avrdude. Can be overridden for debugging (which requires changes
# PROGRAMMER defaults to arduino which is the internal flasher via USB. Can be # that require to use an ISP)
# overridden for debugging (which requires changes that require to use an ISP) PROGRAMMER ?= arduino
export PROGRAMMER ?= arduino # set mcu model for avrdude
FFLAGS += -p m328p
# configure programmer speed in baud
FFLAGS_EXTRA += -b 115200
BOOTLOADER_SIZE ?= 512 BOOTLOADER_SIZE ?= 512
ROM_RESERVED ?= $(BOOTLOADER_SIZE) ROM_RESERVED ?= $(BOOTLOADER_SIZE)
......
...@@ -3,19 +3,10 @@ include $(RIOTBOARD)/common/arduino-atmega/Makefile.dep ...@@ -3,19 +3,10 @@ include $(RIOTBOARD)/common/arduino-atmega/Makefile.dep
INCLUDES += -I$(RIOTBOARD)/common/arduino-atmega/include INCLUDES += -I$(RIOTBOARD)/common/arduino-atmega/include
# refine serial port information
export BAUD ?= 9600
include $(RIOTMAKE)/tools/serial.inc.mk include $(RIOTMAKE)/tools/serial.inc.mk
export FLASHER = avrdude # Disable auto erase for flash and avoid error if signature doesn't match
export DIST_PATH = $(RIOTBOARD)/$(BOARD)/dist FFLAGS_EXTRA += -F -D
export DEBUGSERVER_PORT = 4242
export DEBUGSERVER = $(DIST_PATH)/debug_srv.sh
export DEBUGSERVER_FLAGS = "-g -j usb :$(DEBUGSERVER_PORT)"
export DEBUGGER_FLAGS = "-x $(RIOTBOARD)/$(BOARD)/dist/gdb.conf $(ELFFILE)"
export DEBUGGER = $(DIST_PATH)/debug.sh $(DEBUGSERVER_FLAGS) $(DIST_PATH) $(DEBUGSERVER_PORT)
export PROGRAMMER_FLAGS = -P $(PORT) -b $(PROGRAMMER_SPEED) # include avrdude flashing tool
include $(RIOTMAKE)/tools/avrdude.inc.mk
OFLAGS += -j .text -j .data
export FFLAGS += -c $(PROGRAMMER) $(PROGRAMMER_FLAGS) -F -D -U flash:w:$(HEXFILE)
...@@ -15,7 +15,8 @@ export FFLAGS += -p atmega256rfr2 ...@@ -15,7 +15,8 @@ export FFLAGS += -p atmega256rfr2
# For 8MHz F_CPU following Baudrate have good error rates # For 8MHz F_CPU following Baudrate have good error rates
# 76923 # 76923
# 38400 # 38400
export BAUD = 38400 BAUD = 38400
include $(RIOTMAKE)/tools/serial.inc.mk
# PROGRAMMER defaults to arduino which is the internal flasher via USB. Can be # PROGRAMMER defaults to arduino which is the internal flasher via USB. Can be
# overridden for debugging (which requires changes that require to use an ISP) # overridden for debugging (which requires changes that require to use an ISP)
...@@ -25,4 +26,4 @@ export PROGRAMMER ?= wiring ...@@ -25,4 +26,4 @@ export PROGRAMMER ?= wiring
BOOTLOADER_SIZE ?= 4K BOOTLOADER_SIZE ?= 4K
ROM_RESERVED ?= $(BOOTLOADER_SIZE) ROM_RESERVED ?= $(BOOTLOADER_SIZE)
include $(RIOTBOARD)/common/arduino-atmega/Makefile.include include $(RIOTMAKE)/tools/avrdude.inc.mk
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment