Skip to content

Commit 94053aa

Browse files
authored
Merge pull request #303 from omar-ihab-ali/update/emergency_stop_state_msg_foxy
update EmergencyStopState Msg to include other states sent by PLC
2 parents 91b6077 + 1f63230 commit 94053aa

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed
Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# This message holds the emergency stop (EMStop) status of the robot. It detects wether an EMStop is caused by the safety laserscanner or the emergency stop buttons. Moreover, it gives signalizes wether the EMStop was confirmed (after Button press stop) and the system is free again.
22

33
# Possible EMStop States
4-
int16 EMFREE = 0 # system operatign normal
5-
int16 EMSTOP = 1 # emergency stop is active (Button pressed; obstacle in safety field of scanner)
6-
int16 EMCONFIRMED = 2 # emergency stop was confirmed system is reinitializing and going back to normal
4+
int16 EMFREE = 0 # system operatign normal
5+
int16 EMSTOP = 1 # emergency stop is active (Button pressed; obstacle in safety field of scanner)
6+
int16 EMCONFIRMED = 2 # emergency stop was confirmed system is reinitializing and going back to normal
77

8-
bool emergency_button_stop # true = emergency stop signal is issued by button pressed
9-
bool scanner_stop # true = emergency stop signal is issued by scanner
10-
int16 emergency_state # state (including confimation by key-switch), values see above
8+
bool emergency_button_stop # true = emergency stop signal is issued by button pressed
9+
bool scanner_stop # true = emergency stop signal is issued by scanner
10+
bool monitoring_stop # true = emergency stop signal is issued by monitor
11+
bool user_interaction_stop # true = emergency stop signal is issued by ui
12+
bool hardware_stop # true = emergency stop signal is issued due to hardware failure
13+
bool bumper_stop # true = emergency stop signal is issued by bumper
14+
bool fall_stop # true = emergency stop signal is issued by fall-protecting sensors
15+
bool charge_stop # true = emergency stop signal is issued due to charging process
1116

17+
int16 emergency_state # state (including confimation by key-switch), values see above

0 commit comments

Comments
 (0)