Skip to content

Commit 2424d50

Browse files
committed
fault cleanup
1 parent a89172d commit 2424d50

File tree

1 file changed

+26
-91
lines changed

1 file changed

+26
-91
lines changed

shared/comps/fault.c

+26-91
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,34 @@ HAL_PIN(print);
6060

6161
HAL_PIN(brake_release);
6262

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+
6384
struct fault_ctx_t {
6485
state_t state;
6586
fault_t fault;
6687
float cmd_error;
6788
float mot_fb_error;
6889
float com_fb_error;
6990
float joint_fb_error;
70-
// float hv_error;
7191
float hv_temp_error;
7292
float dc_volt_error;
7393
float mot_temp_error;
@@ -185,7 +205,6 @@ static void rt_func(float period, volatile void *ctx_ptr, volatile hal_pin_inst_
185205

186206
float hv_error = PIN(hv_error);
187207
if(hv_error > 0.0) {
188-
//TODO: pass error, move filter to hv comp
189208
ctx->fault = hv_error;
190209
PIN(last_fault) = ctx->fault;
191210
ctx->state = SOFT_FAULT;
@@ -217,12 +236,14 @@ static void rt_func(float period, volatile void *ctx_ptr, volatile hal_pin_inst_
217236

218237
switch(ctx->state) {
219238
case DISABLED:
239+
ctx->fault = NO_ERROR;
240+
case SOFT_FAULT:
241+
case LED_TEST:
242+
case HARD_FAULT:
220243
PIN(mot_brake) = 0.0;
221244
PIN(en_out) = 0.0;
222245
PIN(en_fb) = 0.0;
223246
PIN(en_pid) = 0.0;
224-
ctx->fault = NO_ERROR;
225-
// scale = 0.0;
226247
break;
227248

228249
case ENABLED:
@@ -241,23 +262,6 @@ static void rt_func(float period, volatile void *ctx_ptr, volatile hal_pin_inst_
241262
PIN(en_fb) = 1.0;
242263
PIN(en_out) = 1.0;
243264
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;
261265
}
262266

263267
PIN(fault) = ctx->fault;
@@ -291,76 +295,7 @@ static void nrt_func(volatile void *ctx_ptr, volatile hal_pin_inst_t *pin_ptr) {
291295
break;
292296

293297
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]);
364299
break;
365300

366301
case HARD_FAULT:

0 commit comments

Comments
 (0)