aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/appl/launchpad430/build.xml
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2017-08-19 12:15:28 +0200
committerDimitri Sokolyuk <demon@dim13.org>2017-08-19 12:15:28 +0200
commit67d25d837ac55f28a366c0a3b262e439a6e75fc3 (patch)
treedf7715c7724c5935ab87c807f3b8b4ef529315e3 /amforth-6.5/appl/launchpad430/build.xml
parente0d6784e89dba33226c0edb815bb974486fa7c48 (diff)
Add AmForth
Diffstat (limited to 'amforth-6.5/appl/launchpad430/build.xml')
-rw-r--r--amforth-6.5/appl/launchpad430/build.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/amforth-6.5/appl/launchpad430/build.xml b/amforth-6.5/appl/launchpad430/build.xml
new file mode 100644
index 0000000..6e0223e
--- /dev/null
+++ b/amforth-6.5/appl/launchpad430/build.xml
@@ -0,0 +1,40 @@
+<!-- make multiple targets with antelope -->
+<project name="Launchpad 430" basedir="." default="Help">
+ <import file="../msp-build.xml"/>
+
+ <target name="lp-2553.hex" description="Hexfiles for TI launchpad430">
+ <nakenasm projectname="lp-2553" mcu="msp430g2553"/>
+ </target>
+
+ <target name="lp-2553" depends="lp-2553.hex" description="Launchpad G2553">
+ <echo>Uploading Hexfiles for TI LP 2553</echo>
+ <mspdebug mcu="msp430g2553"
+ projectname="lp-2553"
+ programmer="rf2500"/>
+ </target>
+
+ <target name="lp-5529.hex" description="Hexfiles for TI LP F5529">
+ <nakenasm projectname="lp-5529" mcu="msp430f5529"/>
+ </target>
+
+ <target name="lp-5529" depends="lp-5529.hex" description="Launchpad F5529">
+ <echo>Uploading Hexfiles for TI LP 5529</echo>
+ <mspdebug mcu="msp430f5529"
+ projectname="lp-5529"
+ programmer="tilib"/>
+ </target>
+
+
+ <target name="lp-5969.hex" description="Hexfiles for TI LP FR5969">
+ <nakenasm projectname="lp-5969" mcu="msp430fr5969"/>
+ </target>
+
+ <target name="lp-5969" depends="lp-5969.hex" description="Launchpad FR5969">
+ <echo>Uploading Hexfiles for TI LP 5969</echo>
+ <mspdebug mcu="msp430fr5969"
+ projectname="lp-5969"
+ programmer="tilib"/>
+ </target>
+
+ <target name="compile" depends="lp-2553.hex,lp-5969.hex,lp-5529.hex"/>
+</project>