Skip to content

Commit

Permalink
remove confusing 'SVTOL' abbreviation
Browse files Browse the repository at this point in the history
  • Loading branch information
mbjd committed Jan 15, 2025
1 parent 1a68bef commit a0bf546
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# inspired by: diff ROMFS/px4fmu_common/init.d/airframes/4001_quad_x ROMFS/px4fmu_common/init.d-posix/airframes/10040_sihsim_quadx

PX4_SIMULATOR=${PX4_SIMULATOR:=sihsim}
PX4_SIM_MODEL=${PX4_SIM_MODEL:=svtol}
PX4_SIM_MODEL=${PX4_SIM_MODEL:=standard_vtol}

param set-default SENS_EN_GPSSIM 1
param set-default SENS_EN_BAROSIM 1
Expand Down
2 changes: 1 addition & 1 deletion ROMFS/px4fmu_common/init.d-posix/airframes/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ px4_add_romfs_files(
10040_sihsim_quadx
10041_sihsim_airplane
10042_sihsim_xvert
10043_sihsim_svtol
10043_sihsim_standard_vtol

17001_flightgear_tf-g1
17002_flightgear_tf-g2
Expand Down
2 changes: 1 addition & 1 deletion src/modules/simulation/simulator_sih/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ if(PX4_PLATFORM MATCHES "posix")
airplane
quadx
xvert
svtol
standard_vtol
)

# find corresponding airframes
Expand Down
5 changes: 5 additions & 0 deletions src/modules/simulation/simulator_sih/sih.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,12 @@ class Sih : public ModuleBase<Sih>, public ModuleParams

float _u[NUM_ACTUATORS_MAX] {}; // thruster signals

// MC = Multicopter
// FW = Fixed Wing
// TS = Tailsitter VTOL
// SVTOL = Standard VTOL
enum class VehicleType {MC, FW, TS, SVTOL};

VehicleType _vehicle = VehicleType::MC;

// aerodynamic segments for the fixedwing
Expand Down

0 comments on commit a0bf546

Please sign in to comment.