-
Notifications
You must be signed in to change notification settings - Fork 632
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hotfix Release 3.2.2 Movement control, Vertical Position control bug…
…. User is not required to add home point altitude to Z desired position after this fix. Z desired position may be entered directly. Home point altitude is handled internally
- Loading branch information
Showing
11 changed files
with
146 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Find Precision Missions library | ||
find_path(PRECISION_MISSIONS_INCLUDE_DIR | ||
OnboardSDK.h | ||
HINTS ${PRECISION_MISSIONS_INCLUDE_DIR} | ||
NO_DEFAULT_PATH) | ||
|
||
find_path(PRECISION_MISSIONS_DEPENDENCIES_DIR | ||
Eigen/Dense | ||
HINTS ${PRECISION_MISSIONS_DEPENDENCIES_DIR} | ||
NO_DEFAULT_PATH) | ||
|
||
set(PRECISION_MISSIONS_LIBRARY_NAMES "libmissionplan.a") | ||
find_library(PRECISION_MISSIONS_LIBRARY | ||
NAMES ${LIBLAS_NAMES} | ||
HINTS ${PRECISION_MISSIONS_LIBRARY} | ||
NO_DEFAULT_PATH) | ||
|
||
if(EXISTS ${PRECISION_MISSIONS_INCLUDE_DIR}) | ||
message(STATUS "Precision Missions include dir set to ${PRECISION_MISSIONS_INCLUDE_DIR}") | ||
endif() | ||
|
||
if(EXISTS ${PRECISION_MISSIONS_DEPENDENCIES_DIR}) | ||
message(STATUS "Precision Missions dependencies dir set to ${PRECISION_MISSIONS_DEPENDENCIES_DIR}") | ||
endif() | ||
|
||
if(EXISTS ${PRECISION_MISSIONS_LIBRARY}) | ||
message(STATUS "Precision Missions library set to ${PRECISION_MISSIONS_LIBRARY}") | ||
set(PrecisionMissions_FOUND "YES") | ||
endif() | ||
|
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
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
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
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