Actions
Bug #2214
closeddetect state uses broken offset logic
Affected Versions:
Effort:
Difficulty:
Label:
Description
in the DeStateDetectStartDetection() function at :
uint8_t offset = det_ctx->de_state_sig_array[s->num] & 0xef
I suspect that this line of code should be:
uint8_t offset = det_ctx->de_state_sig_array[s->num] & 0x7f
Actions