Remove unneded reset of the acquisition grid

This commit is contained in:
Carles Fernandez 2020-06-16 08:29:10 +02:00
parent 3beb1e98af
commit 094f8f2ee9
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
1 changed files with 0 additions and 8 deletions

View File

@ -868,14 +868,6 @@ void pcps_acquisition::acquisition_core(uint64_t samp_count)
}
d_num_noncoherent_integrations_counter = 0U;
d_positive_acq = 0;
// Reset grid
for (uint32_t i = 0; i < d_num_doppler_bins; i++)
{
for (uint32_t k = 0; k < d_fft_size; k++)
{
d_magnitude_grid[i][k] = 0.0;
}
}
}
}