-
Notifications
You must be signed in to change notification settings - Fork 77
Add vda5050 safety state msg #266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,12 @@ | ||||||||||||||||||||||
| string e_stop # Enum {autoAck, manual, remote, none} Acknowledge-Type of eStop: | ||||||||||||||||||||||
| # autoAck: autoacknowledgeable e-stop is activated e.g. by bumper or protective field | ||||||||||||||||||||||
| # manual: e-stop has to be acknowledged manually at the vehicle | ||||||||||||||||||||||
| # remote: facility estop has to be acknowledged remotely | ||||||||||||||||||||||
| # none: no e-stop activated | ||||||||||||||||||||||
| bool field_violation # Protective field violation. True: field is violated False: field is not violated | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Enums for eStop | ||||||||||||||||||||||
| string AUTO_ACK="autoAck" | ||||||||||||||||||||||
| string MANUAL="manual" | ||||||||||||||||||||||
| string REMOTE="remote" | ||||||||||||||||||||||
| string NONE="none" | ||||||||||||||||||||||
|
Comment on lines
+8
to
+12
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this will not work: the constants need to be integer, right?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ahh yes. You are right.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just updated it. What do you think about it? I mean the change in general? Or is it better to have it as strings |
||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.