forked from SteveMacenski/slam_toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Service response structure for save map and serialize Posegraph (…
…SteveMacenski#421) * Added Service response structure for save map and serialize Posegraph * Updated Segmentation_fault to Undefined_failure condition * Updated result of serialize service * Updated code according to the project's style guide Co-authored-by: SumontreeP <[email protected]>
- Loading branch information
Showing
5 changed files
with
32 additions
and
4 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 |
---|---|---|
@@ -1,2 +1,8 @@ | ||
std_msgs/String name | ||
--- | ||
# Result code defintions | ||
uint8 RESULT_SUCCESS=0 | ||
uint8 RESULT_NO_MAP_RECEIEVD=1 | ||
uint8 RESULT_UNDEFINED_FAILURE=255 | ||
|
||
uint8 result |
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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
string filename | ||
--- | ||
--- | ||
# Result code defintions | ||
uint8 RESULT_SUCCESS=0 | ||
uint8 RESULT_FAILED_TO_WRITE_FILE=255 | ||
|
||
uint8 result |