1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-07-23 20:33:05 +00:00

ADD: VTL sat CN0 dump to file

This commit is contained in:
miguekf 2023-01-04 19:23:43 +01:00
parent a882822dd9
commit 96b1dae7e6

View File

@ -292,6 +292,8 @@ bool Vtl_Engine::vtl_loop(Vtl_Data& new_data)
<< "," << new_data.rx_p(0) << "," << new_data.rx_p(1) << "," << new_data.rx_p(2) << "," << new_data.rx_v(0) << "," << new_data.rx_v(1) << "," << new_data.rx_v(2) << "," << new_data.rx_dts(0) << "," << new_data.rx_dts(1) << endl;
dump_vtl_file << "filt_dopp_sat"
<< "," << doppler_hz_filt(0) << "," << doppler_hz_filt(1) << "," << doppler_hz_filt(2) << "," << doppler_hz_filt(3) << "," << doppler_hz_filt(4) << endl;
dump_vtl_file << "CN0_sat"
<< "," << new_data.sat_CN0_dB_hz(0) << "," << new_data.sat_CN0_dB_hz(1)<< "," << new_data.sat_CN0_dB_hz(2)<< "," << new_data.sat_CN0_dB_hz(3)<< "," << new_data.sat_CN0_dB_hz(4) << endl;
dump_vtl_file.close();
}