Error fixed in attack detect
This commit is contained in:
parent
fe01d4486a
commit
8b22a3a67e
|
@ -34,6 +34,7 @@ gboolean attack_detect_freq(struct data_frame *df)
|
||||||
head->AVERAGE_OF_FREQUENCY = 50;
|
head->AVERAGE_OF_FREQUENCY = 50;
|
||||||
head->COUNT = 500;
|
head->COUNT = 500;
|
||||||
head->idcode = to_intconvertor(df->idcode);
|
head->idcode = to_intconvertor(df->idcode);
|
||||||
|
head->next = NULL;
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -139,6 +140,7 @@ gboolean attack_detect_vol(struct data_frame *df)
|
||||||
headvol->AVERAGE_OF_VOLTAGE = CURR_vol;
|
headvol->AVERAGE_OF_VOLTAGE = CURR_vol;
|
||||||
headvol->COUNT = 500;
|
headvol->COUNT = 500;
|
||||||
headvol->idcode = to_intconvertor(df->idcode);
|
headvol->idcode = to_intconvertor(df->idcode);
|
||||||
|
headvol->next = NULL;
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -193,4 +195,4 @@ gboolean attack_detect_freq_vol(struct data_frame *df)
|
||||||
return attack_detect_freq(df) && attack_detect_vol(df);
|
return attack_detect_freq(df) && attack_detect_vol(df);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* pavan changes */
|
/* pavan changes */
|
||||||
|
|
Loading…
Reference in New Issue