mirror of
				https://github.com/gnss-sdr/gnss-sdr
				synced 2025-10-31 15:23:04 +00:00 
			
		
		
		
	Remove unused variables
This commit is contained in:
		| @@ -136,7 +136,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int sampled_ms_; | ||||
|     unsigned int max_dwells_; | ||||
|     long fs_in_; | ||||
|   | ||||
| @@ -142,7 +142,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int sampled_ms_; | ||||
|     unsigned int max_dwells_; | ||||
|     long fs_in_; | ||||
|   | ||||
| @@ -139,7 +139,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int sampled_ms_; | ||||
|     unsigned int max_dwells_; | ||||
|     long fs_in_; | ||||
|   | ||||
| @@ -142,7 +142,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int sampled_ms_; | ||||
|     unsigned int max_dwells_; | ||||
|     unsigned int folding_factor_; | ||||
|   | ||||
| @@ -141,7 +141,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int sampled_ms_; | ||||
|     unsigned int tong_init_val_; | ||||
|     unsigned int tong_max_val_; | ||||
|   | ||||
| @@ -146,7 +146,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int sampled_ms_; | ||||
|     unsigned int max_dwells_; | ||||
|     long fs_in_; | ||||
|   | ||||
| @@ -157,7 +157,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int sampled_ms_; | ||||
|     unsigned int max_dwells_; | ||||
|     long fs_in_; | ||||
|   | ||||
| @@ -138,7 +138,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int sampled_ms_; | ||||
|     unsigned int max_dwells_; | ||||
|     long fs_in_; | ||||
|   | ||||
| @@ -138,7 +138,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int sampled_ms_; | ||||
|     unsigned int max_dwells_; | ||||
|     long fs_in_; | ||||
|   | ||||
| @@ -144,7 +144,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int sampled_ms_; | ||||
|     unsigned int max_dwells_; | ||||
|     unsigned int folding_factor_; | ||||
|   | ||||
| @@ -141,7 +141,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int sampled_ms_; | ||||
|     unsigned int tong_init_val_; | ||||
|     unsigned int tong_max_val_; | ||||
|   | ||||
| @@ -151,7 +151,6 @@ private: | ||||
|     float threshold_; | ||||
|     unsigned int doppler_max_; | ||||
|     unsigned int doppler_step_; | ||||
|     unsigned int shift_resolution_; | ||||
|     unsigned int max_dwells_; | ||||
|     long fs_in_; | ||||
|     long if_; | ||||
|   | ||||
| @@ -323,7 +323,7 @@ int pcps_acquisition_fine_doppler_cc::compute_and_accumulate_grid(gr_vector_cons | ||||
|     return d_fft_size; | ||||
| } | ||||
|  | ||||
| int pcps_acquisition_fine_doppler_cc::estimate_Doppler(gr_vector_const_void_star &input_items, int available_samples) | ||||
| int pcps_acquisition_fine_doppler_cc::estimate_Doppler(gr_vector_const_void_star &input_items) | ||||
| { | ||||
|  | ||||
|     // Direct FFT | ||||
| @@ -487,7 +487,7 @@ int pcps_acquisition_fine_doppler_cc::general_work(int noutput_items, | ||||
|     case 3: // Fine doppler estimation | ||||
|         //DLOG(INFO) <<"S3"<<std::endl; | ||||
|         DLOG(INFO) << "Performing fine Doppler estimation"; | ||||
|         estimate_Doppler(input_items, ninput_items[0]); //disabled in repo | ||||
|         estimate_Doppler(input_items); //disabled in repo | ||||
|         d_state = 4; | ||||
|         break; | ||||
|     case 4: // Positive_Acq | ||||
|   | ||||
| @@ -92,7 +92,7 @@ private: | ||||
|             int doppler_offset); | ||||
|  | ||||
|     int compute_and_accumulate_grid(gr_vector_const_void_star &input_items); | ||||
|     int estimate_Doppler(gr_vector_const_void_star &input_items, int available_samples); | ||||
|     int estimate_Doppler(gr_vector_const_void_star &input_items); | ||||
|     float estimate_input_power(gr_vector_const_void_star &input_items); | ||||
|     double search_maximum(); | ||||
|     void reset_grid(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Carles Fernandez
					Carles Fernandez