aboutsummaryrefslogtreecommitdiff
path: root/apps/systemcmds/param/Makefile
diff options
context:
space:
mode:
authorpx4dev <px4@purgatory.org>2012-10-09 22:45:36 -0700
committerpx4dev <px4@purgatory.org>2012-10-09 22:45:36 -0700
commit1e59a592a6a41a65e9e69814ae3d8cb62a061367 (patch)
tree5d17bc01ecdd597b7d6c86c18e2ca827050abb51 /apps/systemcmds/param/Makefile
parentbd3f3b10317f58d20f635f4a3e6aee8fca8d9d2b (diff)
downloadpx4-firmware-1e59a592a6a41a65e9e69814ae3d8cb62a061367.tar.gz
px4-firmware-1e59a592a6a41a65e9e69814ae3d8cb62a061367.tar.bz2
px4-firmware-1e59a592a6a41a65e9e69814ae3d8cb62a061367.zip
Split the parameter load/save commands out of the 'eeprom' command, since that's not really the obvious place for them. Add parameter printing functionality (though, it's a mess due to %f being busted)
Update the script examples to use the new command.
Diffstat (limited to 'apps/systemcmds/param/Makefile')
-rw-r--r--apps/systemcmds/param/Makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/apps/systemcmds/param/Makefile b/apps/systemcmds/param/Makefile
new file mode 100644
index 000000000..603746a20
--- /dev/null
+++ b/apps/systemcmds/param/Makefile
@@ -0,0 +1,42 @@
+############################################################################
+#
+# Copyright (C) 2012 PX4 Development Team. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+#
+# 1. Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in
+# the documentation and/or other materials provided with the
+# distribution.
+# 3. Neither the name PX4 nor the names of its contributors may be
+# used to endorse or promote products derived from this software
+# without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+############################################################################
+
+#
+# Build the parameters tool.
+#
+
+APPNAME = param
+PRIORITY = SCHED_PRIORITY_DEFAULT
+STACKSIZE = 4096
+
+include $(APPDIR)/mk/app.mk