|
|
|
include(posix/px4_impl_posix)
|
|
|
|
|
|
|
|
set(CMAKE_TOOLCHAIN_FILE ${CMAKE_SOURCE_DIR}/cmake/toolchains/Toolchain-arm-linux-gnueabihf-raspbian.cmake)
|
|
|
|
|
|
|
|
add_definitions(
|
|
|
|
-D__PX4_POSIX_BEBOP
|
|
|
|
-D__LINUX
|
|
|
|
-D__BEBOP
|
|
|
|
)
|
|
|
|
|
|
|
|
set(CMAKE_PROGRAM_PATH
|
|
|
|
"${RPI_TOOLCHAIN_DIR}/gcc-linaro-arm-linux-gnueabihf-raspbian/bin"
|
|
|
|
${CMAKE_PROGRAM_PATH}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(config_module_list
|
|
|
|
|
|
|
|
# examples/px4_simple_app
|
|
|
|
|
|
|
|
#
|
|
|
|
# Board support modules
|
|
|
|
#
|
|
|
|
drivers/device
|
|
|
|
modules/sensors
|
|
|
|
platforms/posix/drivers/df_ms5607_wrapper
|
|
|
|
<<<<<<< c4eb65862f307de4b679e24f44fab0c565d7c2a3
|
|
|
|
platforms/posix/drivers/df_mpu6050_wrapper
|
|
|
|
=======
|
|
|
|
platforms/posix/drivers/df_ak8963_wrapper
|
|
|
|
>>>>>>> Add DF wrapper for AK8963
|
|
|
|
|
|
|
|
#
|
|
|
|
# System commands
|
|
|
|
#
|
|
|
|
systemcmds/param
|
|
|
|
systemcmds/mixer
|
|
|
|
systemcmds/ver
|
|
|
|
systemcmds/esc_calib
|
|
|
|
systemcmds/topic_listener
|
|
|
|
systemcmds/perf
|
|
|
|
|
|
|
|
#
|
|
|
|
# Estimation modules (EKF/ SO3 / other filters)
|
|
|
|
#
|
|
|
|
#modules/attitude_estimator_ekf
|
|
|
|
modules/ekf_att_pos_estimator
|
|
|
|
modules/attitude_estimator_q
|
|
|
|
modules/position_estimator_inav
|
|
|
|
modules/local_position_estimator
|
|
|
|
modules/ekf2
|
|
|
|
|
|
|
|
#
|
|
|
|
# Vehicle Control
|
|
|
|
#
|
|
|
|
modules/mc_att_control
|
|
|
|
modules/mc_pos_control
|
|
|
|
modules/fw_att_control
|
|
|
|
modules/fw_pos_control_l1
|
|
|
|
modules/vtol_att_control
|
|
|
|
|
|
|
|
#
|
|
|
|
# Library modules
|
|
|
|
#
|
|
|
|
modules/sdlog2
|
|
|
|
modules/logger
|
|
|
|
modules/commander
|
|
|
|
modules/param
|
|
|
|
modules/systemlib
|
|
|
|
modules/systemlib/mixer
|
|
|
|
modules/uORB
|
|
|
|
modules/dataman
|
|
|
|
modules/land_detector
|
|
|
|
modules/navigator
|
|
|
|
modules/mavlink
|
|
|
|
|
|
|
|
#
|
|
|
|
# PX4 drivers
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Libraries
|
|
|
|
#
|
|
|
|
lib/controllib
|
|
|
|
lib/mathlib
|
|
|
|
lib/mathlib/math/filter
|
|
|
|
lib/geo
|
|
|
|
lib/ecl
|
|
|
|
lib/geo_lookup
|
|
|
|
lib/launchdetection
|
|
|
|
lib/external_lgpl
|
|
|
|
lib/conversion
|
|
|
|
lib/terrain_estimation
|
|
|
|
lib/runway_takeoff
|
|
|
|
lib/tailsitter_recovery
|
|
|
|
lib/DriverFramework/framework
|
|
|
|
|
|
|
|
#
|
|
|
|
# POSIX
|
|
|
|
#
|
|
|
|
platforms/common
|
|
|
|
platforms/posix/px4_layer
|
|
|
|
platforms/posix/work_queue
|
|
|
|
)
|
|
|
|
|
|
|
|
set(config_df_driver_list
|
|
|
|
ms5607
|
|
|
|
mpu6050
|
|
|
|
)
|