forked from naubiomech/ExoCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresetMotorIfError.ino
59 lines (45 loc) · 1.69 KB
/
resetMotorIfError.ino
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
void resetMotorIfError() {
//motor_error boolean is "true" if we have an error, false if we don't
left_leg->motor_error = !digitalRead(left_leg->pin_err); //digitalRead is pulled HIGH when there is no error
right_leg->motor_error = !digitalRead(right_leg->pin_err); //Logical NOT makes it so that an error corresponds to HIGH
motor_error = (left_leg->motor_error || right_leg->motor_error);
if (stream == 1 && flag_motor_error_check) {
//Enable motors for the first time because intially it is set to low
if (flag_enable_catch_error == true && (digitalRead(onoff) == LOW)) {
digitalWrite(onoff, HIGH);
}
if (motor_error) {
motor_error_counter++; // motor_error_counter init as 0
}
else {
motor_error_counter = 0;
}
if (motor_error_counter >= 2 && flag_enable_catch_error == true) { //flag_enable_catch_error init as true
turn_off_drivers = true;
motor_error_counter = 0;
}
if (turn_off_drivers) {
digitalWrite(onoff, LOW);
count_time_drivers_are_off = true;
flag_enable_catch_error = false;
turn_off_drivers = false;
}
if (count_time_drivers_are_off) {
time_drivers_are_off++;
}
if (time_drivers_are_off >= 8) {
digitalWrite(onoff, HIGH);
count_time_drivers_are_off = false;
time_drivers_are_off = 0;
count_wait_to_allow_for_error_check = true;
}
if (count_wait_to_allow_for_error_check) {
wait_to_allow_for_error_check++;
}
if (wait_to_allow_for_error_check >= 20) {
flag_enable_catch_error = true;
count_wait_to_allow_for_error_check = false;
wait_to_allow_for_error_check = 0;
}
}//end stream==1
} // resetmotorIfError