aboutsummaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorAnton Babushkin <anton.babushkin@me.com>2013-12-25 18:41:23 +0400
committerAnton Babushkin <anton.babushkin@me.com>2013-12-25 18:41:23 +0400
commit26daae0b0af2f73171f2e741178474873724fdbe (patch)
tree82ef7934249fa285d7ea32d0d839812641c0a6a1 /makefiles
parent1e4bb764a61335c0e209f83438e74264e972a164 (diff)
parent69218d2bd58a12a2ce89066a5e6a9e8682529cd5 (diff)
downloadpx4-firmware-26daae0b0af2f73171f2e741178474873724fdbe.tar.gz
px4-firmware-26daae0b0af2f73171f2e741178474873724fdbe.tar.bz2
px4-firmware-26daae0b0af2f73171f2e741178474873724fdbe.zip
Merge branch 'mathlib_new' into vector_control2
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/config_px4fmu-v1_test.mk50
1 files changed, 50 insertions, 0 deletions
diff --git a/makefiles/config_px4fmu-v1_test.mk b/makefiles/config_px4fmu-v1_test.mk
new file mode 100644
index 000000000..42a35c5dd
--- /dev/null
+++ b/makefiles/config_px4fmu-v1_test.mk
@@ -0,0 +1,50 @@
+#
+# Makefile for the px4fmu_default configuration
+#
+
+#
+# Use the configuration's ROMFS.
+#
+ROMFS_ROOT = $(PX4_BASE)/ROMFS/px4fmu_test
+
+#
+# Board support modules
+#
+MODULES += drivers/device
+MODULES += drivers/stm32
+MODULES += drivers/led
+MODULES += drivers/boards/px4fmu-v1
+MODULES += systemcmds/perf
+MODULES += systemcmds/reboot
+MODULES += systemcmds/tests
+MODULES += systemcmds/nshterm
+
+#
+# Libraries
+#
+LIBRARIES += lib/mathlib/CMSIS
+MODULES += lib/mathlib
+
+#
+# Library modules
+#
+MODULES += modules/systemlib
+MODULES += modules/uORB
+MODULES += modules/systemlib/mixer
+
+#
+# Transitional support - add commands from the NuttX export archive.
+#
+# In general, these should move to modules over time.
+#
+# Each entry here is <command>.<priority>.<stacksize>.<entrypoint> but we use a helper macro
+# to make the table a bit more readable.
+#
+define _B
+ $(strip $1).$(or $(strip $2),SCHED_PRIORITY_DEFAULT).$(or $(strip $3),CONFIG_PTHREAD_STACK_DEFAULT).$(strip $4)
+endef
+
+# command priority stack entrypoint
+BUILTIN_COMMANDS := \
+ $(call _B, sercon, , 2048, sercon_main ) \
+ $(call _B, serdis, , 2048, serdis_main )