mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
The dataman module now works under linux using /tmp/dataman as the file path. Two files from NuttX were added to the Linux impl for single linked queue handling. Signed-off-by: Mark Charlebois <charlebm@gmail.com>
60 lines
908 B
Makefile
60 lines
908 B
Makefile
#
|
|
# Makefile for the Foo *default* configuration
|
|
#
|
|
|
|
#
|
|
# Use the configuration's ROMFS.
|
|
#
|
|
#ROMFS_ROOT = $(PX4_BASE)/ROMFS/px4fmu_common
|
|
|
|
#
|
|
# Board support modules
|
|
#
|
|
MODULES += drivers/device
|
|
#MODULES += modules/sensors
|
|
|
|
#
|
|
# System commands
|
|
#
|
|
#MODULES += systemcmds/boardinfo
|
|
|
|
#
|
|
# General system control
|
|
#
|
|
#MODULES += modules/mavlink
|
|
#MODULES += modules/mavlink
|
|
|
|
#
|
|
# Estimation modules (EKF/ SO3 / other filters)
|
|
#
|
|
#MODULES += modules/attitude_estimator_ekf
|
|
|
|
#
|
|
# Vehicle Control
|
|
#
|
|
#MODULES += modules/mc_att_control
|
|
|
|
#
|
|
# Library modules
|
|
#
|
|
MODULES += modules/systemlib
|
|
MODULES += modules/systemlib/mixer
|
|
MODULES += modules/uORB
|
|
MODULES += modules/dataman
|
|
|
|
#
|
|
# Libraries
|
|
#
|
|
MODULES += lib/mathlib
|
|
MODULES += lib/geo
|
|
MODULES += lib/geo_lookup
|
|
#MODULES += lib/conversion
|
|
|
|
#
|
|
# Linux port
|
|
#
|
|
MODULES += platforms/linux/px4_layer
|
|
MODULES += platforms/linux/hello
|
|
MODULES += platforms/linux/vcdev_test
|
|
|