mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-05-04 16:34:12 +00:00
Consume all samples in each iteration
This commit is contained in:
parent
10cd79591b
commit
838e643d51
@ -369,7 +369,7 @@ int galileo_pcps_8ms_acquisition_cc::general_work(int noutput_items,
|
|||||||
d_state = 3; // Negative acquisition
|
d_state = 3; // Negative acquisition
|
||||||
}
|
}
|
||||||
|
|
||||||
consume_each(1);
|
consume_each(ninput_items[0]);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -431,9 +431,7 @@ int pcps_acquisition_cc::general_work(int noutput_items,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
consume_each(1);
|
consume_each(ninput_items[0]);
|
||||||
|
|
||||||
DLOG(INFO) << "Done. Consumed 1 item.";
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -431,9 +431,7 @@ int pcps_acquisition_sc::general_work(int noutput_items,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
consume_each(1);
|
consume_each(ninput_items[0]);
|
||||||
|
|
||||||
DLOG(INFO) << "Done. Consumed 1 item.";
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -393,7 +393,7 @@ int pcps_cccwsr_acquisition_cc::general_work(int noutput_items,
|
|||||||
d_state = 3; // Negative acquisition
|
d_state = 3; // Negative acquisition
|
||||||
}
|
}
|
||||||
|
|
||||||
consume_each(1);
|
consume_each(ninput_items[0]);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -521,7 +521,7 @@ int pcps_quicksync_acquisition_cc::general_work(int noutput_items,
|
|||||||
volk_free(in_temp_folded);
|
volk_free(in_temp_folded);
|
||||||
volk_free(in_1code);
|
volk_free(in_1code);
|
||||||
volk_free(corr_output);
|
volk_free(corr_output);
|
||||||
consume_each(1);
|
consume_each(ninput_items[0]);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -391,7 +391,7 @@ int pcps_tong_acquisition_cc::general_work(int noutput_items,
|
|||||||
{
|
{
|
||||||
d_state = 3; // Negative acquisition
|
d_state = 3; // Negative acquisition
|
||||||
}
|
}
|
||||||
consume_each(1);
|
consume_each(ninput_items[0]);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user