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.
57 lines
948 B
57 lines
948 B
10 years ago
|
include(posix/px4_impl_posix-arm)
|
||
|
|
||
10 years ago
|
set(USE_TOOLCHAIN Toolchain-arm-linux-gnueabihf)
|
||
|
|
||
10 years ago
|
function(px4_get_config)
|
||
|
|
||
|
px4_parse_function_args(
|
||
|
NAME px4_set_config_modules
|
||
10 years ago
|
ONE_VALUE OUT_MODULES
|
||
|
REQUIRED OUT_MODULES
|
||
10 years ago
|
ARGN ${ARGN})
|
||
10 years ago
|
|
||
|
set(config_module_list
|
||
|
drivers/device
|
||
|
drivers/blinkm
|
||
|
drivers/pwm_out_sim
|
||
|
drivers/rgbled
|
||
|
drivers/led
|
||
|
modules/sensors
|
||
|
|
||
|
systemcmds/param
|
||
|
systemcmds/mixer
|
||
|
systemcmds/ver
|
||
|
|
||
|
modules/mavlink
|
||
|
|
||
|
modules/attitude_estimator_ekf
|
||
|
modules/ekf_att_pos_estimator
|
||
|
|
||
|
modules/mc_pos_control
|
||
|
modules/mc_att_control
|
||
|
|
||
|
modules/systemlib
|
||
|
modules/systemlib/mixer
|
||
|
modules/uORB
|
||
|
modules/sensors
|
||
|
modules/dataman
|
||
|
modules/sdlog2
|
||
|
modules/simulator
|
||
|
modules/commander
|
||
|
modules/controllib
|
||
|
|
||
|
lib/mathlib
|
||
|
lib/mathlib/math/filter
|
||
|
lib/geo
|
||
|
lib/geo_lookup
|
||
|
lib/conversion
|
||
|
|
||
|
platforms/posix/px4_layer
|
||
|
platforms/posix/work_queue
|
||
|
)
|
||
|
|
||
10 years ago
|
set(${OUT_MODULES} ${config_module_list} PARENT_SCOPE)
|
||
10 years ago
|
|
||
|
endfunction()
|
||
|
|