Commit 848d7739 authored by Grzegorz Daniluk's avatar Grzegorz Daniluk

[t24_fix]: initialize to 0 rest of variables inside det_rising and det_falling

parent 4611f503
...@@ -122,6 +122,10 @@ void rxts_calibration_start() ...@@ -122,6 +122,10 @@ void rxts_calibration_start()
cal_cur_phase = 0; cal_cur_phase = 0;
det_rising.prev_val = det_falling.prev_val = -1; det_rising.prev_val = det_falling.prev_val = -1;
det_rising.state = det_falling.state = TD_WAIT_INACTIVE; det_rising.state = det_falling.state = TD_WAIT_INACTIVE;
det_rising.sample_count = 0;
det_falling.sample_count = 0;
det_rising.trans_phase = 0;
det_falling.trans_phase = 0;
spll_set_phase_shift(0, 0); spll_set_phase_shift(0, 0);
} }
...@@ -129,7 +133,7 @@ void rxts_calibration_start() ...@@ -129,7 +133,7 @@ void rxts_calibration_start()
calibration is done. */ calibration is done. */
int rxts_calibration_update(uint32_t *t24p_value) int rxts_calibration_update(uint32_t *t24p_value)
{ {
int32_t ttrans; int32_t ttrans = 0;
if (spll_shifter_busy(0)) if (spll_shifter_busy(0))
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment