examples/tiva/lm4f: Use correct openocd interface

I'd love to meet the person who managed to use flossjtag interface
with a Stellaris board, but until we can meet, use the correct
interface, which is ti-icdi. Note that this setting is redundant,
since the board config file already specifies the correct interface;
however, OOCD_INTERFACE variable cannot be empty, by virtue of how
higher-level makefiles are written.
This commit is contained in:
Alexandru Gagniuc
2016-03-05 14:20:25 -08:00
committed by Karl Palsson
parent 9f8d37d8c8
commit 07c2326f7e

View File

@@ -31,7 +31,7 @@ ARCH_FLAGS = -mthumb -mcpu=cortex-m4 $(FP_FLAGS)
# Support for ICDI is available starting with openocd 0.7.0
OOCD ?= openocd
OOCD_INTERFACE ?= flossjtag
OOCD_INTERFACE ?= ti-icdi
OOCD_BOARD ?= ek-lm4f120xl
################################################################################