Merge pull request #29 from OlegHahm/objcopy_flags
added objcopy flags to makefiles for all platforms
This commit is contained in:
commit
fbec959f13
@ -19,3 +19,4 @@ ifeq ($(strip $(PORT)),)
|
|||||||
endif
|
endif
|
||||||
export HEXFILE = bin/$(PROJECT).hex
|
export HEXFILE = bin/$(PROJECT).hex
|
||||||
export FFLAGS = -d $(PORT) -j uif "prog $(HEXFILE)"
|
export FFLAGS = -d $(PORT) -j uif "prog $(HEXFILE)"
|
||||||
|
export OFLAGS = -O ihex
|
||||||
|
|||||||
@ -24,3 +24,4 @@ export FFLAGS = -j olimex "prog $(HEXFILE)"
|
|||||||
|
|
||||||
export USEMODULE += msp430_common
|
export USEMODULE += msp430_common
|
||||||
export INCLUDES += -I $(RIOTCPU)/msp430-common/include/
|
export INCLUDES += -I $(RIOTCPU)/msp430-common/include/
|
||||||
|
export OFLAGS = -O ihex
|
||||||
|
|||||||
@ -24,3 +24,4 @@ export FFLAGS = $(PORT) $(PROJBINDIR)/$(PROJECT).hex
|
|||||||
include $(RIOTBOARD)/msba2-common/Makefile.dep
|
include $(RIOTBOARD)/msba2-common/Makefile.dep
|
||||||
|
|
||||||
export INCLUDES += -I$(RIOTCPU)/lpc2387/include
|
export INCLUDES += -I$(RIOTCPU)/lpc2387/include
|
||||||
|
export OFLAGS = -O ihex
|
||||||
|
|||||||
@ -19,7 +19,7 @@ export AS = $(PREFIX)as
|
|||||||
export LINK = $(PREFIX)gcc
|
export LINK = $(PREFIX)gcc
|
||||||
export SIZE = $(PREFIX)size
|
export SIZE = $(PREFIX)size
|
||||||
export OBJCOPY = $(PREFIX)objcopy
|
export OBJCOPY = $(PREFIX)objcopy
|
||||||
FLASHER = lpc2k_pgm
|
FLASHER = mc1322x-load.pl
|
||||||
TERM = pyterm.py
|
TERM = pyterm.py
|
||||||
LINKFLAGS = -mcpu=arm7tdmi-s -static -lgcc -nostartfiles -T$(RIOTBASE)/cpu/$(CPU)/mc1322x.lds
|
LINKFLAGS = -mcpu=arm7tdmi-s -static -lgcc -nostartfiles -T$(RIOTBASE)/cpu/$(CPU)/mc1322x.lds
|
||||||
|
|
||||||
@ -27,4 +27,5 @@ ifeq ($(strip $(PORT)),)
|
|||||||
export PORT = /dev/ttyUSB0
|
export PORT = /dev/ttyUSB0
|
||||||
endif
|
endif
|
||||||
export HEXFILE = bin/$(PROJECT).hex
|
export HEXFILE = bin/$(PROJECT).hex
|
||||||
export FFLAGS = -d $(PORT) -j uif "prog $(HEXFILE)"
|
export FFLAGS = -t $(PORT) -f $(HEXFILE) -c 'bbmc -l redbee-econotag reset'
|
||||||
|
export OFLAGS = -O binary --gap-fill=0xff
|
||||||
|
|||||||
@ -21,3 +21,5 @@ export HEXFILE = bin/$(PROJECT).hex
|
|||||||
export FFLAGS = -d $(PORT) -j uif "prog $(HEXFILE)"
|
export FFLAGS = -d $(PORT) -j uif "prog $(HEXFILE)"
|
||||||
|
|
||||||
export INCLUDES += -I $(RIOTCPU)/msp430-common/include/
|
export INCLUDES += -I $(RIOTCPU)/msp430-common/include/
|
||||||
|
export OFLAGS = -O ihex
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user