mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-11-07 02:33:03 +00:00
coding style + removed some unnecessary memory arrays in the FPGA E5A tracking adapter class.
This commit is contained in:
@@ -54,7 +54,7 @@ public:
|
||||
uint32_t sampled_ms,
|
||||
uint32_t select_queue,
|
||||
lv_16sc_t *all_fft_codes,
|
||||
uint32_t excludelimit);
|
||||
uint32_t excludelimit);
|
||||
|
||||
~fpga_acquisition();
|
||||
bool init();
|
||||
@@ -113,18 +113,17 @@ private:
|
||||
lv_16sc_t *d_all_fft_codes; // memory that contains all the code ffts
|
||||
uint32_t d_vector_length; // number of samples incluing padding and number of ms
|
||||
uint32_t d_excludelimit;
|
||||
uint32_t d_nsamples_total; // number of samples including padding
|
||||
uint32_t d_nsamples; // number of samples not including padding
|
||||
uint32_t d_select_queue; // queue selection
|
||||
std::string d_device_name; // HW device name
|
||||
uint32_t d_doppler_max; // max doppler
|
||||
uint32_t d_doppler_step; // doppler step
|
||||
uint32_t d_PRN; // PRN
|
||||
uint32_t d_nsamples_total; // number of samples including padding
|
||||
uint32_t d_nsamples; // number of samples not including padding
|
||||
uint32_t d_select_queue; // queue selection
|
||||
std::string d_device_name; // HW device name
|
||||
uint32_t d_doppler_max; // max doppler
|
||||
uint32_t d_doppler_step; // doppler step
|
||||
uint32_t d_PRN; // PRN
|
||||
// FPGA private functions
|
||||
void fpga_acquisition_test_register(void);
|
||||
void fpga_configure_acquisition_local_code(lv_16sc_t fft_local_code[]);
|
||||
void read_result_valid(uint32_t *result_valid);
|
||||
|
||||
};
|
||||
|
||||
#endif /* GNSS_SDR_FPGA_ACQUISITION_H_ */
|
||||
|
||||
Reference in New Issue
Block a user