Skip to content
Snippets Groups Projects
Commit 07d7b780 authored by Aaron Viets's avatar Aaron Viets
Browse files

lal_dqtukey: One more small bug fix for initial data.

parent 75bdba9b
No related branches found
No related tags found
No related merge requests found
......@@ -136,13 +136,17 @@ start: \
/* Decide what we should do with the next data on this buffer */ \
if(*num_since_bad == *num_leftover) { \
*num_leftover = transition_samples; \
*state = ONES; \
goto ones; \
} \
*num_leftover = transition_samples; \
if(*num_since_bad <= transition_samples) \
if(*num_since_bad <= transition_samples) { \
*state = ZEROS; \
goto zeros; \
else \
} else { \
*state = RAMP_UP; \
goto ramp_up; \
} \
} \
\
ones: \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment