mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
6bbf372d7d
Allows to use avrdude as a flashing tool in any context (e.g. not dependent on arduino or atmega) though it only works (AFAIK) on atmega, but I thought it's better to have it here as we have other flashing tools.
17 lines
689 B
Makefile
17 lines
689 B
Makefile
FLASHER = avrdude
|
|
DIST_PATH = $(RIOTBOARD)/$(BOARD)/dist
|
|
DEBUGSERVER_PORT = 4242
|
|
DEBUGSERVER = $(DIST_PATH)/debug_srv.sh
|
|
DEBUGSERVER_FLAGS = "-g -j usb :$(DEBUGSERVER_PORT)"
|
|
DEBUGGER_FLAGS = "-x $(RIOTBOARD)/$(BOARD)/dist/gdb.conf $(ELFFILE)"
|
|
DEBUGGER = $(DIST_PATH)/debug.sh $(DEBUGSERVER_FLAGS) $(DIST_PATH) $(DEBUGSERVER_PORT)
|
|
|
|
# make the flasher port configurable (e.g. with atmelice the port is usb)
|
|
# defaults to terminal's serial port if not configured
|
|
AVRDUDE_PORT ?= $(PORT)
|
|
PROGRAMMER_FLAGS = -P $(AVRDUDE_PORT) $(FFLAGS_EXTRA)
|
|
|
|
# don't force to flash HEXFILE, but set it as default
|
|
FLASHFILE ?= $(HEXFILE)
|
|
FFLAGS += -c $(PROGRAMMER) $(PROGRAMMER_FLAGS) -U flash:w:$(HEXFILE)
|