Blame view

RIOT/boards/waspmote-pro/Makefile.include 1.31 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  # define the cpu used by the waspmote pro board
  export CPU = atmega1281
  
  # configure the terminal program
  PORT_LINUX  ?= /dev/ttyACM0
  PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbserial*)))
  BAUD        ?= 9600
  include $(RIOTMAKE)/tools/serial.inc.mk
  
  # define tools used for building the project
  export PREFIX = avr-
  export CC = $(PREFIX)gcc
  export CXX = $(PREFIX)c++
  export AR = $(PREFIX)ar
  export AS = $(PREFIX)as
  export LINK = $(PREFIX)gcc
  export SIZE = $(PREFIX)size
  export OBJCOPY = $(PREFIX)objcopy
  
  export FLASHER = avrdude
  export DIST_PATH = $(RIOTBOARD)/$(BOARD)/dist
  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)
  
  # PROGRAMMER defaults to stk500v1 which is the internal flasher via USB. Can be
  # overridden for debugging (which requires changes that require to use an ISP)
  export PROGRAMMER ?= stk500v1
  
  ifeq ($(PROGRAMMER), stk500v1)
    export PROGRAMMER_FLAGS = -P $(PORT) -b 115200
  endif
  
  export OFLAGS += -j .text -j .data -O ihex
  export FFLAGS += -p m1281 -c $(PROGRAMMER) $(PROGRAMMER_FLAGS) -F -U flash:w:bin/$(BOARD)/$(PROJECT)$(APPLICATION).hex