2015-09-08 05:20:48 -03:00
|
|
|
function(px4_set_config_modules out_module_list)
|
|
|
|
set(config_module_list
|
|
|
|
drivers/device
|
|
|
|
drivers/boards/sitl
|
|
|
|
drivers/pwm_out_sim
|
|
|
|
drivers/led
|
|
|
|
drivers/rgbled
|
|
|
|
modules/sensors
|
|
|
|
|
|
|
|
# drivers/blinkm
|
|
|
|
# drivers/ms5611
|
|
|
|
|
|
|
|
#
|
|
|
|
# System commands
|
|
|
|
#
|
|
|
|
systemcmds/param
|
|
|
|
systemcmds/mixer
|
|
|
|
|
|
|
|
#
|
|
|
|
# General system control
|
|
|
|
#
|
|
|
|
# modules/mavlink
|
|
|
|
|
|
|
|
#
|
|
|
|
# Estimation modules (EKF/ SO3 / other filters)
|
|
|
|
#
|
|
|
|
# modules/attitude_estimator_ekf
|
|
|
|
modules/ekf_att_pos_estimator
|
|
|
|
modules/attitude_estimator_q
|
|
|
|
modules/position_estimator_inav
|
|
|
|
|
|
|
|
#
|
|
|
|
# Vehicle Control
|
|
|
|
#
|
|
|
|
modules/mc_att_control
|
|
|
|
modules/mc_pos_control
|
|
|
|
|
|
|
|
#
|
|
|
|
# Library modules
|
|
|
|
#
|
|
|
|
modules/systemlib
|
|
|
|
modules/systemlib/mixer
|
|
|
|
modules/uORB
|
|
|
|
#MODULES += modules/dataman
|
|
|
|
#MODULES += modules/sdlog2
|
|
|
|
#MODULES += modules/simulator
|
|
|
|
modules/commander
|
|
|
|
|
|
|
|
#
|
|
|
|
# Libraries
|
|
|
|
#
|
|
|
|
lib/mathlib
|
|
|
|
lib/mathlib/math/filter
|
|
|
|
lib/geo
|
|
|
|
lib/geo_lookup
|
|
|
|
lib/conversion
|
|
|
|
modules/controllib
|
|
|
|
|
|
|
|
#
|
|
|
|
# QuRT port
|
|
|
|
#
|
2015-09-09 17:24:29 -03:00
|
|
|
platforms/common
|
2015-09-08 05:20:48 -03:00
|
|
|
platforms/qurt/px4_layer
|
|
|
|
platforms/posix/work_queue
|
|
|
|
# platforms/posix/drivers/accelsim
|
|
|
|
# platforms/posix/drivers/gyrosim
|
|
|
|
# platforms/posix/drivers/adcsim
|
|
|
|
# platforms/posix/drivers/barosim
|
|
|
|
|
|
|
|
#
|
|
|
|
# Unit tests
|
|
|
|
#
|
|
|
|
# platforms/qurt/tests/muorb
|
|
|
|
# platforms/posix/tests/vcdev_test
|
|
|
|
# platforms/posix/tests/hrt_test
|
|
|
|
# platforms/posix/tests/wqueue
|
|
|
|
|
|
|
|
#
|
|
|
|
# sources for muorb over fastrpc
|
|
|
|
#
|
2015-09-08 11:47:09 -03:00
|
|
|
modules/muorb/adsp
|
2015-09-08 05:20:48 -03:00
|
|
|
)
|
|
|
|
set(${out_module_list} ${config_module_list} PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|
|
|