mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2026-08-04 09:18:54 +00:00
Fix typos detected by codespell
This commit is contained in:
+1
-1
@@ -372,7 +372,7 @@ static inline void volk_gnsssdr_16ic_x2_multiply_16ic_rvv(lv_16sc_t* result, con
|
||||
|
||||
// In looping, decrement the number of
|
||||
// elements left and increment the pointers
|
||||
// by the numebr of elements processed,
|
||||
// by the number of elements processed,
|
||||
// taking into account how the `vl` complex
|
||||
// numbers are each stored as 2 `short`s
|
||||
}
|
||||
|
||||
+1
-1
@@ -1882,7 +1882,7 @@ static inline void volk_gnsssdr_16ic_x2_rotator_dot_prod_16ic_xn_rvv(lv_16sc_t*
|
||||
// Initialize `out` to zero
|
||||
result[n_vec] = lv_cmake(0, 0);
|
||||
|
||||
// Treat complex number as struct containting
|
||||
// Treat complex number as struct containing
|
||||
// two 16-bit integers
|
||||
inPtrBuf[n_vec] = (const short*)in_a[n_vec];
|
||||
}
|
||||
|
||||
+1
-1
@@ -505,7 +505,7 @@ static inline void volk_gnsssdr_32fc_32f_rotator_dot_prod_32fc_xn_rvv(lv_32fc_t*
|
||||
// Initialize `out` to zero
|
||||
result[n_vec] = lv_cmake(0.0f, 0.0f);
|
||||
|
||||
// Treat complex number as struct containting
|
||||
// Treat complex number as struct containing
|
||||
// two 16-bit integers
|
||||
inPtrBuf[n_vec] = in_a[n_vec];
|
||||
}
|
||||
|
||||
+1
-1
@@ -810,7 +810,7 @@ static inline void volk_gnsssdr_32fc_x2_rotator_dot_prod_32fc_xn_rvv(lv_32fc_t*
|
||||
// Initialize `out` to zero
|
||||
result[n_vec] = lv_cmake(0.0f, 0.0f);
|
||||
|
||||
// Treat complex number as struct containting
|
||||
// Treat complex number as struct containing
|
||||
// two 16-bit integers
|
||||
inPtrBuf[n_vec] = (float*)in_a[n_vec];
|
||||
}
|
||||
|
||||
@@ -103,7 +103,7 @@ public:
|
||||
protected:
|
||||
// Can be used by each derived class
|
||||
static const int32_t LOCAL_CODE_FPGA_ENABLE_WRITE_MEMORY = 0x0C000000; // flag that enables WE (Write Enable) of the local code FPGA
|
||||
static const int32_t LOCAL_CODE_FPGA_CORRELATOR_SELECT_COUNT = 0x20000000; // flag that selects the writting of the pilot code in the FPGA (as opposed to the data code)
|
||||
static const int32_t LOCAL_CODE_FPGA_CORRELATOR_SELECT_COUNT = 0x20000000; // flag that selects the writing of the pilot code in the FPGA (as opposed to the data code)
|
||||
const std::string default_device_name_GPS_L1 = "multicorrelator_resampler_S00_AXI"; // Default FPGA device name for GPS L1
|
||||
const std::string default_device_name_Galileo_E1 = "multicorrelator_resampler_5_1_AXI"; // Default FPGA device name for Galileo L1
|
||||
const std::string default_device_name_GPS_L5 = "multicorrelator_resampler_3_1_AXI"; // Default FPGA device name for GPS L5
|
||||
@@ -116,7 +116,7 @@ protected:
|
||||
inline uint32_t get_channel() { return channel_; };
|
||||
inline uint32_t get_num_prev_assigned_ch() { return num_prev_assigned_ch_; };
|
||||
|
||||
// Can be overriden by derived classes
|
||||
// Can be overridden by derived classes
|
||||
bool find_alternative_device(std::string& device_io_name [[maybe_unused]]) { return false; };
|
||||
|
||||
// Must be set by each derived class
|
||||
|
||||
Reference in New Issue
Block a user