-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
867f77e
commit 0c7f4fc
Showing
3 changed files
with
52 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Alarm Number | ||
int32 number | ||
|
||
# Sub Code | ||
int32 sub_code | ||
|
||
# Alarm Name/Message | ||
string name | ||
|
||
# Contents | ||
string contents | ||
|
||
# Meaning | ||
string description | ||
|
||
# Cause, Remedy and Notes for Cause-Remedy pairs | ||
#motoros2_interfaces/msg/CauseRemedyPair[] cause_remedy | ||
# # Cause | ||
# string cause | ||
# | ||
# # Remedy | ||
# string remedy | ||
# | ||
# # Notes | ||
# string notes |
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,25 @@ | ||
# empty request (service returns information about all active alarms & errors). | ||
|
||
--- | ||
|
||
# Result of the service invocation. Values other than one (1) signal failure. | ||
# | ||
# NOTE: future versions of this service may use a different set of result codes | ||
uint32 result_code | ||
|
||
# string representation of the value in 'result_code', for humans | ||
string message | ||
|
||
# Each entry in this list provides detailed information about all currently | ||
# active alarms. If this list is empty, there are no active alarms. | ||
# | ||
# Note: order of entries in this list does not encode for any specific severity | ||
# or priority of active alarms. | ||
motoros2_interfaces/AlarmInfo[] alarms | ||
|
||
# Each entry in this list provides detailed information about all currently | ||
# active errors. If this list is empty, there are no active errors. | ||
# | ||
# Note: order of entries in this list does not encode for any specific severity | ||
# or priority of active errors. | ||
motoros2_interfaces/AlarmInfo[] errors |