-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
navigation: applies PR review suggestions
- Loading branch information
1 parent
d60c1b8
commit 9dac624
Showing
10 changed files
with
229 additions
and
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -385,6 +385,3 @@ pyrightconfig.json | |
build/ | ||
install/ | ||
log/ | ||
|
||
# Vscode | ||
.vscode |
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
10 changes: 0 additions & 10 deletions
10
px4_ros2_cpp/include/px4_ros2/navigation/experimental/navigation_interface_codes.hpp
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
px4_ros2_cpp/include/px4_ros2/navigation/experimental/navigation_interface_common.hpp
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,12 @@ | ||
#pragma once | ||
|
||
// Define navigation interface return codes | ||
enum class NavigationInterfaceReturnCode : int | ||
{ | ||
SUCCESS = 0, | ||
ESTIMATE_EMPTY = 1, | ||
ESTIMATE_VARIANCE_INVALID = 2, | ||
ESTIMATE_FRAME_UNKNOWN = 3, | ||
ESTIMATE_VALUE_NAN = 4, | ||
ESTIMATE_MISSING_TIMESTAMP = 5 | ||
}; |
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
Oops, something went wrong.