1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-06-01 06:04:08 +00:00

fixed: Indentation according to coding style

git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@199 64b25241-fba3-4117-9849-534c7e92360d
This commit is contained in:
Carles Fernandez 2012-07-02 11:52:35 +00:00
parent 950765180f
commit f8082227f8
2 changed files with 96 additions and 97 deletions

View File

@ -124,7 +124,7 @@ void gps_l1_ca_pcps_acquisition_cc::init()
d_fft_if->execute(); // We need the FFT of GPS C/A code
//Conjugate the local code
//TODO Optimize it ! try conj()
//TODO Optimize it !
for (unsigned int i = 0; i < d_fft_size; i++)
{
d_fft_codes[i] = std::complex<float>(conj(d_fft_if->get_outbuf()[i]));
@ -265,8 +265,6 @@ int gps_l1_ca_pcps_acquisition_cc::general_work(int noutput_items,
d_mag = magt;
d_gnss_synchro->Acq_delay_samples = (double)indext;
d_gnss_synchro->Acq_doppler_hz = (double)doppler;
//d_code_phase = indext;
//d_doppler_freq = doppler;
}
}

View File

@ -56,7 +56,8 @@ gps_l1_ca_pcps_make_acquisition_cc(unsigned int sampled_ms,
/*!
* \brief This class implements a PCPS acquisition block for GPS L1 C/A
*/
class gps_l1_ca_pcps_acquisition_cc: public gr_block {
class gps_l1_ca_pcps_acquisition_cc: public gr_block
{
private: