From d21572da02160f9f917db33ceac55822e812db7c Mon Sep 17 00:00:00 2001 From: fros4943 Date: Tue, 18 Dec 2007 11:55:01 +0000 Subject: [PATCH] configurable port --- platform/msb430/buildscripts/Makefile.win | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/platform/msb430/buildscripts/Makefile.win b/platform/msb430/buildscripts/Makefile.win index 8074406fa..3f7928b87 100644 --- a/platform/msb430/buildscripts/Makefile.win +++ b/platform/msb430/buildscripts/Makefile.win @@ -1,5 +1,13 @@ +ifndef JTAG_PORT + JTAG_PORT = LPT1 +endif + +ifdef DEBUG + DEBUG_ARGS = -D -D -D -D +endif + %.u: %.ihex - msp430-jtag -mI $^ + msp430-jtag $(DEBUG_ARGS) -l $(JTAG_PORT) -mI $^ #CW=cw23