@@ -60,14 +60,34 @@ HAL_PIN(print);
60
60
61
61
HAL_PIN (brake_release );
62
62
63
+ //fault strings for fault_t form common.h
64
+ static const char * fault_string [] = {
65
+ "no error" ,
66
+ "CMD error" ,
67
+ "mot FB error" ,
68
+ "com FB error" ,
69
+ "joint FB error" ,
70
+ "position error" ,
71
+ "saturation error" ,
72
+ "Motor overtemperture" ,
73
+ "HV crc error" ,
74
+ "HV timeout error" ,
75
+ "HV overtemperture" ,
76
+ "HV volt error" ,
77
+ "HV fault error" ,
78
+ "Current offset fault" ,
79
+ "Motor overcurrent rms" ,
80
+ "Motor overcurrent peak" ,
81
+ "Motor overcurrent hw limit" ,
82
+ };
83
+
63
84
struct fault_ctx_t {
64
85
state_t state ;
65
86
fault_t fault ;
66
87
float cmd_error ;
67
88
float mot_fb_error ;
68
89
float com_fb_error ;
69
90
float joint_fb_error ;
70
- // float hv_error;
71
91
float hv_temp_error ;
72
92
float dc_volt_error ;
73
93
float mot_temp_error ;
@@ -185,7 +205,6 @@ static void rt_func(float period, volatile void *ctx_ptr, volatile hal_pin_inst_
185
205
186
206
float hv_error = PIN (hv_error );
187
207
if (hv_error > 0.0 ) {
188
- //TODO: pass error, move filter to hv comp
189
208
ctx -> fault = hv_error ;
190
209
PIN (last_fault ) = ctx -> fault ;
191
210
ctx -> state = SOFT_FAULT ;
@@ -217,12 +236,14 @@ static void rt_func(float period, volatile void *ctx_ptr, volatile hal_pin_inst_
217
236
218
237
switch (ctx -> state ) {
219
238
case DISABLED :
239
+ ctx -> fault = NO_ERROR ;
240
+ case SOFT_FAULT :
241
+ case LED_TEST :
242
+ case HARD_FAULT :
220
243
PIN (mot_brake ) = 0.0 ;
221
244
PIN (en_out ) = 0.0 ;
222
245
PIN (en_fb ) = 0.0 ;
223
246
PIN (en_pid ) = 0.0 ;
224
- ctx -> fault = NO_ERROR ;
225
- // scale = 0.0;
226
247
break ;
227
248
228
249
case ENABLED :
@@ -241,23 +262,6 @@ static void rt_func(float period, volatile void *ctx_ptr, volatile hal_pin_inst_
241
262
PIN (en_fb ) = 1.0 ;
242
263
PIN (en_out ) = 1.0 ;
243
264
break ;
244
-
245
- case SOFT_FAULT :
246
- PIN (mot_brake ) = 0.0 ;
247
- PIN (en_out ) = 0.0 ;
248
- PIN (en_fb ) = 0.0 ;
249
- PIN (en_pid ) = 0.0 ;
250
- // scale = 0.0;
251
- break ;
252
-
253
- case LED_TEST :
254
- case HARD_FAULT :
255
- PIN (mot_brake ) = 0.0 ;
256
- PIN (en_out ) = 0.0 ;
257
- PIN (en_fb ) = 0.0 ;
258
- PIN (en_pid ) = 0.0 ;
259
- // scale = 0.0;
260
- break ;
261
265
}
262
266
263
267
PIN (fault ) = ctx -> fault ;
@@ -291,76 +295,7 @@ static void nrt_func(volatile void *ctx_ptr, volatile hal_pin_inst_t *pin_ptr) {
291
295
break ;
292
296
293
297
case SOFT_FAULT :
294
- printf ("ERROR: Soft fault: " );
295
- switch ((fault_t )ctx -> fault ) {
296
- case NO_ERROR :
297
- printf ("no error\n" );
298
- break ;
299
-
300
- case CMD_ERROR :
301
- printf ("CMD error\n" );
302
- break ;
303
-
304
- case MOT_FB_ERROR :
305
- printf ("mot FB error\n" );
306
- break ;
307
-
308
- case COM_FB_ERROR :
309
- printf ("com FB error\n" );
310
- break ;
311
-
312
- case JOINT_FB_ERROR :
313
- printf ("com FB error\n" );
314
- break ;
315
-
316
- case POS_ERROR :
317
- printf ("position error\n" );
318
- break ;
319
-
320
- case SAT_ERROR :
321
- printf ("saturation error\n" );
322
- break ;
323
-
324
- case HV_CRC_ERROR :
325
- printf ("HV crc error\n" );
326
- break ;
327
-
328
- case HV_TIMEOUT_ERROR :
329
- printf ("HV timeout error\n" );
330
- break ;
331
-
332
- case HV_TEMP_ERROR :
333
- printf ("HV overtemperture\n" );
334
- break ;
335
-
336
- case HV_VOLT_ERROR :
337
- printf ("HV volt error\n" );
338
- break ;
339
-
340
- case HV_FAULT_ERROR :
341
- printf ("HV fault error\n" );
342
- break ;
343
-
344
- case MOT_TEMP_ERROR :
345
- printf ("Motor overtemperture\n" );
346
- break ;
347
-
348
- case HV_CURRENT_OFFSET_FAULT :
349
- printf ("Current offset fault\n" );
350
- break ;
351
-
352
- case HV_OVERCURRENT_RMS :
353
- printf ("Motor overcurrent rms\n" );
354
- break ;
355
-
356
- case HV_OVERCURRENT_PEAK :
357
- printf ("Motor overcurrent peak\n" );
358
- break ;
359
-
360
- case HV_OVERCURRENT_HW :
361
- printf ("Motor overcurrent hw limit\n" );
362
- break ;
363
- }
298
+ printf ("ERROR: Fault %lu: %s\n" ,(uint32_t )ctx -> fault ,fault_string [(uint32_t )ctx -> fault ]);
364
299
break ;
365
300
366
301
case HARD_FAULT :
0 commit comments