1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-29 08:23:19 +00:00

removed FPGA dummy read

This commit is contained in:
Marc Majoral 2019-04-12 10:03:57 +02:00
parent 692978f66b
commit a628ad5906

View File

@ -279,13 +279,11 @@ void Fpga_Acquisition::read_acquisition_results(uint32_t *max_index,
*power_sum = 0;
readval = d_map_base[8];
*total_blk_exp = readval;
readval = d_map_base[7]; // read doppler index -- this read releases the interrupt line
*doppler_index = readval;
readval = d_map_base[15]; // read dummy (to be removed)
readval = d_map_base[8];
*total_blk_exp = readval;
}