qualifier

This commit is contained in:
Stefan Kögl 2012-10-03 23:55:38 +02:00
parent 5e8ae479ca
commit affb9b64d1
1 changed files with 4 additions and 4 deletions

View File

@ -125,21 +125,21 @@ static void print_debug() {
Serial.println(error_condition); Serial.println(error_condition);
} }
boolean check_max_duration() { static boolean check_max_duration() {
if (time > time_max) { if (time > time_max) {
error_condition |= E_TIME_MAX; error_condition |= E_TIME_MAX;
return false; return false;
} }
} }
boolean check_Tl_duration() { static boolean check_Tl_duration() {
if (time - Tl_time_start > Tp_duration) { if (time - Tl_time_start > Tp_duration) {
error_condition |= E_TL_TOO_LONG; error_condition |= E_TL_TOO_LONG;
return false; return false;
} }
} }
boolean check_Tp_duration() { static boolean check_Tp_duration() {
if (time - Tp_time_start > Tp_duration) { if (time - Tp_time_start > Tp_duration) {
error_condition |= E_TP_TOO_LONG; error_condition |= E_TP_TOO_LONG;
return false; return false;
@ -197,7 +197,7 @@ static void set_end_state() {
} }
void set_error_state() { static void set_error_state() {
if (state != ERROR_STATE) { if (state != ERROR_STATE) {
Serial.println("Changed state to ERROR_STATE"); Serial.println("Changed state to ERROR_STATE");
set_temp(0, 0, 0, 0); set_temp(0, 0, 0, 0);