-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDriveStateMachine.cpp
More file actions
282 lines (269 loc) · 8.21 KB
/
DriveStateMachine.cpp
File metadata and controls
282 lines (269 loc) · 8.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#include "DriveStateMachine.hpp"
DriveStateMachine::DriveState_en DriveStateMachine::calculate_state(const uint16_t &status_word)
{
if ((status_word & DS_NOT_READY_MASK) == DS_NOT_READY) { return DS_NOT_READY; }
if ((status_word & DS_SWITCH_ON_DISABLED_MASK) == DS_SWITCH_ON_DISABLED) { return DS_SWITCH_ON_DISABLED; }
if ((status_word & DS_SWITCH_ON_READY_MASK) == DS_SWITCH_ON_READY) { return DS_SWITCH_ON_READY; }
if ((status_word & DS_SWITCHED_ON_MASK) == DS_SWITCHED_ON) { return DS_SWITCHED_ON; }
if ((status_word & DS_OPERATION_ENABLED_MASK) == DS_OPERATION_ENABLED) { return DS_OPERATION_ENABLED; }
if ((status_word & DS_QUICK_STOP_ACTIVE_MASK) == DS_QUICK_STOP_ACTIVE) { return DS_QUICK_STOP_ACTIVE; }
if ((status_word & DS_FAULT_MASK) == DS_FAULT) { return DS_FAULT; }
if ((status_word & DS_FAULT_REACTION_ACTIVE_MASK) == DS_FAULT_REACTION_ACTIVE) { return DS_FAULT_REACTION_ACTIVE; }
return DS_MAX;
}
bool DriveStateMachine::valid_transition(const DriveState_en &initial_state, const DriveState_en &final_state,
uint16_t *control_word)
{
bool ok_transition = false;
switch (initial_state)
{
case DS_NOT_READY:
switch (final_state)
{
// Valid transitions
case DS_SWITCH_ON_DISABLED:
case DS_FAULT_REACTION_ACTIVE: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
// Invalid transitions
case DS_NOT_READY:
case DS_SWITCH_ON_READY:
case DS_SWITCHED_ON:
case DS_OPERATION_ENABLED:
case DS_QUICK_STOP_ACTIVE:
case DS_FAULT:
default: {
ok_transition = false;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
}
break;
case DS_SWITCH_ON_DISABLED:
switch (final_state)
{
// Valid transitions
case DS_SWITCH_ON_READY: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_QUICK_STOP | CW_ENABLE_VOLTAGE);
break;
}
case DS_FAULT_REACTION_ACTIVE: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
// Invalid transitions
case DS_SWITCH_ON_DISABLED:
case DS_NOT_READY:
case DS_SWITCHED_ON:
case DS_OPERATION_ENABLED:
case DS_QUICK_STOP_ACTIVE:
case DS_FAULT:
default: {
ok_transition = false;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
}
break;
case DS_SWITCH_ON_READY:
switch (final_state)
{
// Valid transitions
case DS_SWITCHED_ON: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_SWITCH_ON);
break;
}
case DS_OPERATION_ENABLED: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_ENABLE_OPERATION | CW_SWITCH_ON);
break;
}
case DS_SWITCH_ON_DISABLED: {
ok_transition = true;
CLEAR_BIT_PATTERN(*control_word, CW_QUICK_STOP | CW_ENABLE_VOLTAGE);
break;
}
case DS_FAULT_REACTION_ACTIVE: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
// Invalid transitions
case DS_SWITCH_ON_READY:
case DS_NOT_READY:
case DS_QUICK_STOP_ACTIVE:
case DS_FAULT:
default: {
ok_transition = false;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
}
break;
case DS_SWITCHED_ON:
switch (final_state)
{
// Valid transitions
case DS_SWITCH_ON_DISABLED: {
ok_transition = true;
CLEAR_BIT_PATTERN(*control_word, CW_QUICK_STOP | CW_ENABLE_VOLTAGE);
break;
}
case DS_SWITCH_ON_READY: {
ok_transition = true;
CLEAR_BIT_PATTERN(*control_word, CW_SWITCH_ON);
break;
}
case DS_OPERATION_ENABLED: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_ENABLE_OPERATION);
break;
}
case DS_FAULT_REACTION_ACTIVE: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
// Invalid transitions
case DS_SWITCHED_ON:
case DS_NOT_READY:
case DS_QUICK_STOP_ACTIVE:
case DS_FAULT:
default: {
ok_transition = false;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
}
break;
case DS_OPERATION_ENABLED:
switch (final_state)
{
// Valid transitions
case DS_SWITCH_ON_DISABLED: {
ok_transition = true;
CLEAR_BIT_PATTERN(*control_word, CW_ENABLE_VOLTAGE);
break;
}
case DS_SWITCH_ON_READY: {
ok_transition = true;
CLEAR_BIT_PATTERN(*control_word, CW_SWITCH_ON);
break;
}
case DS_SWITCHED_ON: {
ok_transition = true;
CLEAR_BIT_PATTERN(*control_word, CW_ENABLE_OPERATION);
break;
}
case DS_QUICK_STOP_ACTIVE: {
ok_transition = true;
CLEAR_BIT_PATTERN(*control_word, CW_QUICK_STOP);
break;
}
case DS_FAULT_REACTION_ACTIVE: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
// Invalid transitions
case DS_OPERATION_ENABLED:
case DS_NOT_READY:
case DS_FAULT:
default: {
ok_transition = false;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
}
break;
case DS_QUICK_STOP_ACTIVE:
switch (final_state)
{
// Valid transitions
case DS_SWITCH_ON_DISABLED: {
ok_transition = true;
CLEAR_BIT_PATTERN(*control_word, CW_ENABLE_VOLTAGE);
break;
}
case DS_FAULT_REACTION_ACTIVE: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
// Invalid transitions
case DS_QUICK_STOP_ACTIVE:
case DS_NOT_READY:
case DS_SWITCH_ON_READY:
case DS_SWITCHED_ON:
case DS_OPERATION_ENABLED:
case DS_FAULT:
default: {
ok_transition = false;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
}
break;
case DS_FAULT:
switch (final_state)
{
// Valid transitions
case DS_SWITCH_ON_DISABLED: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_FAULT_RESET);
break;
}
// Invalid transitions
case DS_FAULT:
case DS_NOT_READY:
case DS_SWITCH_ON_READY:
case DS_SWITCHED_ON:
case DS_OPERATION_ENABLED:
case DS_QUICK_STOP_ACTIVE:
case DS_FAULT_REACTION_ACTIVE:
default: {
ok_transition = false;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
}
break;
case DS_FAULT_REACTION_ACTIVE:
switch (final_state)
{
// Valid transitions
case DS_FAULT: {
ok_transition = true;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
// Invalid transitions
case DS_FAULT_REACTION_ACTIVE:
case DS_NOT_READY:
case DS_SWITCH_ON_DISABLED:
case DS_SWITCH_ON_READY:
case DS_SWITCHED_ON:
case DS_OPERATION_ENABLED:
case DS_QUICK_STOP_ACTIVE:
default: {
ok_transition = false;
SET_BIT_PATTERN(*control_word, CW_MAX);
break;
}
}
break;
default: break;
}
return ok_transition;
}
bool DriveStateMachine::set_state(const DriveState_en &state, uint16_t *control_word)
{
bool ok_transition = valid_transition(m_current_state, state, control_word);
if (ok_transition) { m_current_state = state; }
return ok_transition;
}