You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.2 KiB
76 lines
1.2 KiB
10 years ago
|
include(qurt/px4_impl_qurt)
|
||
|
|
||
10 years ago
|
# Run a full link with build stubs to make sure qurt target isn't broken
|
||
|
set(QURT_ENABLE_STUBS 1)
|
||
|
|
||
10 years ago
|
function(px4_get_config)
|
||
|
|
||
|
px4_parse_function_args(
|
||
|
NAME px4_set_config_modules
|
||
|
ONE_VALUE OUT_MODULES
|
||
|
REQUIRED OUT_MODULES
|
||
|
ARGN ${ARGN})
|
||
10 years ago
|
|
||
10 years ago
|
set(config_module_list
|
||
|
drivers/device
|
||
|
drivers/boards/sitl
|
||
|
drivers/pwm_out_sim
|
||
|
drivers/led
|
||
|
drivers/rgbled
|
||
|
modules/sensors
|
||
|
|
||
10 years ago
|
#
|
||
|
# System commands
|
||
|
#
|
||
10 years ago
|
systemcmds/param
|
||
|
systemcmds/mixer
|
||
|
|
||
10 years ago
|
#
|
||
|
# Estimation modules (EKF/ SO3 / other filters)
|
||
|
#
|
||
|
#modules/attitude_estimator_ekf
|
||
10 years ago
|
modules/ekf_att_pos_estimator
|
||
|
modules/attitude_estimator_q
|
||
|
modules/position_estimator_inav
|
||
|
|
||
10 years ago
|
#
|
||
|
# Vehicle Control
|
||
|
#
|
||
10 years ago
|
modules/mc_att_control
|
||
|
modules/mc_pos_control
|
||
|
|
||
10 years ago
|
#
|
||
|
# Library modules
|
||
|
#
|
||
10 years ago
|
modules/systemlib
|
||
|
modules/systemlib/mixer
|
||
|
modules/uORB
|
||
|
modules/commander
|
||
|
|
||
10 years ago
|
#
|
||
|
# Libraries
|
||
|
#
|
||
10 years ago
|
lib/mathlib
|
||
|
lib/mathlib/math/filter
|
||
|
lib/geo
|
||
|
lib/geo_lookup
|
||
|
lib/conversion
|
||
|
modules/controllib
|
||
|
|
||
10 years ago
|
#
|
||
|
# QuRT port
|
||
|
#
|
||
10 years ago
|
platforms/common
|
||
10 years ago
|
platforms/qurt/px4_layer
|
||
|
platforms/posix/work_queue
|
||
|
|
||
10 years ago
|
#
|
||
|
# sources for muorb over fastrpc
|
||
|
#
|
||
10 years ago
|
modules/muorb/adsp
|
||
10 years ago
|
)
|
||
10 years ago
|
set(${OUT_MODULES} ${config_module_list} PARENT_SCOPE)
|
||
10 years ago
|
|
||
10 years ago
|
endfunction()
|
||
|
|