-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate vehicle specific actuator effectiveness
Keep actuator effectivenss in control allocator
- Loading branch information
1 parent
a164aa7
commit dac5ae0
Showing
33 changed files
with
57 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
src/modules/control_allocator/VehicleActuatorEffectiveness/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
px4_add_library(VehicleActuatorEffectiveness | ||
ActuatorEffectivenessUUV.cpp | ||
ActuatorEffectivenessUUV.hpp | ||
ActuatorEffectivenessControlSurfaces.cpp | ||
ActuatorEffectivenessControlSurfaces.hpp | ||
ActuatorEffectivenessCustom.cpp | ||
ActuatorEffectivenessCustom.hpp | ||
ActuatorEffectivenessFixedWing.cpp | ||
ActuatorEffectivenessFixedWing.hpp | ||
ActuatorEffectivenessHelicopter.cpp | ||
ActuatorEffectivenessHelicopter.hpp | ||
ActuatorEffectivenessHelicopterCoaxial.cpp | ||
ActuatorEffectivenessHelicopterCoaxial.hpp | ||
ActuatorEffectivenessMCTilt.cpp | ||
ActuatorEffectivenessMCTilt.hpp | ||
ActuatorEffectivenessMultirotor.cpp | ||
ActuatorEffectivenessMultirotor.hpp | ||
ActuatorEffectivenessTilts.cpp | ||
ActuatorEffectivenessTilts.hpp | ||
ActuatorEffectivenessRotors.cpp | ||
ActuatorEffectivenessRotors.hpp | ||
ActuatorEffectivenessStandardVTOL.cpp | ||
ActuatorEffectivenessStandardVTOL.hpp | ||
ActuatorEffectivenessTiltrotorVTOL.cpp | ||
ActuatorEffectivenessTiltrotorVTOL.hpp | ||
ActuatorEffectivenessTailsitterVTOL.cpp | ||
ActuatorEffectivenessTailsitterVTOL.hpp | ||
ActuatorEffectivenessRoverAckermann.hpp | ||
ActuatorEffectivenessRoverAckermann.cpp | ||
) | ||
|
||
target_compile_options(VehicleActuatorEffectiveness PRIVATE ${MAX_CUSTOM_OPT_LEVEL}) | ||
target_include_directories(VehicleActuatorEffectiveness PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) | ||
target_link_libraries(VehicleActuatorEffectiveness | ||
PRIVATE | ||
mathlib | ||
ActuatorEffectiveness | ||
) | ||
|
||
px4_add_functional_gtest(SRC ActuatorEffectivenessHelicopterTest.cpp LINKLIBS VehicleActuatorEffectiveness) | ||
px4_add_functional_gtest(SRC ActuatorEffectivenessRotorsTest.cpp LINKLIBS VehicleActuatorEffectiveness) |