summaryrefslogtreecommitdiff
path: root/docs/src/code/hss.dot
blob: 28d2e4d935768d388ed2909da36f603d5a216ea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
digraph net {
  IDLE;
  START_JOINTS;
  START;
  WAIT_JOINTS;

  IDLE -> START [label="on EMCMOT_HOME(-1)"];
  START -> START_JOINTS;
  START_JOINTS -> WAIT_JOINTS;
  WAIT_JOINTS -> START_JOINTS [label="all joints in this\nsequence reached home"];
  START_JOINTS -> IDLE [label="if no joints left"];
  WAIT_JOINTS -> IDLE [label="a joint had an error\non its way home"];
  WAIT_JOINTS -> WAIT_JOINTS;
}