mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
- new modules/simulation directory to collect all simulators and related modules - new Tools/simulation directory to collect and organize scattered simulation submodules, scripts, etc - simulation module renamed to simulator_mavlink - sih renamed to simulator_sih (not a great name, but I wanted to be clear it was a simulator) - ignition_simulator renamed to simulator_ignition_bridge - large sitl_target.cmake split by simulation option and in some cases pushed to appropriate modules - sitl targets broken down to what's actually available (eg jmavsim only has 1 model and 1 world) - new Gazebo consistently referred to as Ignition for now (probably the least confusing thing until we fully drop Gazebo classic support someday)
16 lines
560 B
Plaintext
16 lines
560 B
Plaintext
menu "Simulation"
|
|
menuconfig COMMON_SIMULATION
|
|
bool "Common simulation modules"
|
|
default n
|
|
select MODULES_SIMULATION_BATTERY_SIMULATOR
|
|
select MODULES_SIMULATION_PWM_OUT_SIM
|
|
select MODULES_SIMULATION_SENSOR_BARO_SIM
|
|
select MODULES_SIMULATION_SENSOR_GPS_SIM
|
|
select MODULES_SIMULATION_SENSOR_MAG_SIM
|
|
select MODULES_SIMULATION_SIMULATOR_MAVLINK
|
|
select MODULES_SIMULATION_SIMULATOR_SIH
|
|
---help---
|
|
Enable default set of simulation modules
|
|
rsource "*/Kconfig"
|
|
endmenu
|