mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-31 02:16:53 +08:00
vscode debug and ekf2 replay improvements
- create new px4_sitl_replay config specifically for replay - ekf2 replay don't launch gazebo - add px4_sitl_test cmake variant - px4_sitl_test bring into sync with px4_sitl_default - vscode replace hard coded build path with cmake setting
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
|
||||
px4_add_board(
|
||||
PLATFORM posix
|
||||
VENDOR px4
|
||||
MODEL sitl
|
||||
LABEL replay
|
||||
MODULES
|
||||
ekf2
|
||||
logger
|
||||
replay
|
||||
SYSTEMCMDS
|
||||
param
|
||||
perf
|
||||
reboot
|
||||
shutdown
|
||||
topic_listener
|
||||
ver
|
||||
work_queue
|
||||
)
|
||||
|
||||
message(STATUS "Building with uorb publisher rules support")
|
||||
add_definitions(-DORB_USE_PUBLISHER_RULES)
|
||||
|
||||
message(STATUS "Building without lockstep for replay")
|
||||
set(ENABLE_LOCKSTEP_SCHEDULER no)
|
||||
@@ -5,7 +5,6 @@ px4_add_board(
|
||||
MODEL sitl
|
||||
LABEL test
|
||||
TESTING
|
||||
|
||||
DRIVERS
|
||||
#barometer # all available barometer drivers
|
||||
#batt_smbus
|
||||
@@ -20,8 +19,8 @@ px4_add_board(
|
||||
#telemetry # all available telemetry drivers
|
||||
tone_alarm
|
||||
#uavcan
|
||||
|
||||
MODULES
|
||||
airspeed_selector
|
||||
attitude_estimator_q
|
||||
camera_feedback
|
||||
commander
|
||||
@@ -30,7 +29,6 @@ px4_add_board(
|
||||
events
|
||||
fw_att_control
|
||||
fw_pos_control_l1
|
||||
rover_pos_control
|
||||
land_detector
|
||||
landing_target_estimator
|
||||
load_mon
|
||||
@@ -38,27 +36,26 @@ px4_add_board(
|
||||
logger
|
||||
mavlink
|
||||
mc_att_control
|
||||
mc_rate_control
|
||||
mc_pos_control
|
||||
mc_rate_control
|
||||
navigator
|
||||
replay
|
||||
rc_update
|
||||
replay
|
||||
rover_pos_control
|
||||
sensors
|
||||
#sih
|
||||
simulator
|
||||
vmount
|
||||
vtol_att_control
|
||||
airspeed_selector
|
||||
|
||||
SYSTEMCMDS
|
||||
#bl_update
|
||||
#config
|
||||
#dumpfile
|
||||
dyn
|
||||
esc_calib
|
||||
#hardfault_log
|
||||
led_control
|
||||
mixer
|
||||
motor_ramp
|
||||
motor_test
|
||||
#mtd
|
||||
#nshterm
|
||||
param
|
||||
@@ -73,16 +70,17 @@ px4_add_board(
|
||||
tune_control
|
||||
ver
|
||||
work_queue
|
||||
|
||||
EXAMPLES
|
||||
bottle_drop # OBC challenge
|
||||
dyn_hello # dynamically loading modules example
|
||||
fixedwing_control # Tutorial code from https://px4.io/dev/example_fixedwing_control
|
||||
hello
|
||||
#hwtest # Hardware test
|
||||
#matlab_csv_serial
|
||||
px4_mavlink_debug # Tutorial code from http://dev.px4.io/en/debug/debug_values.html
|
||||
px4_simple_app # Tutorial code from http://dev.px4.io/en/apps/hello_sky.html
|
||||
rover_steering_control # Rover example app
|
||||
uuv_example_app
|
||||
)
|
||||
|
||||
set(config_sitl_viewer jmavsim CACHE STRING "viewer for sitl")
|
||||
|
||||
Reference in New Issue
Block a user