1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-04-07 19:26:46 +00:00

Updated controlled termination behavior when the FPGA does not support the requested sampling frequency.

This commit is contained in:
Marc Majoral 2025-02-27 14:22:19 +01:00 committed by Carles Fernandez
parent 08ac861f31
commit 3651822265
6 changed files with 6 additions and 6 deletions

View File

@ -64,7 +64,7 @@ GalileoE1PcpsAmbiguousAcquisitionFpga::GalileoE1PcpsAmbiguousAcquisitionFpga(
if (!acq_configuration_valid)
{
std::cout << "The FPGA does not support the required sampling frequency of " << acq_parameters_.fs_in << " SPS for the L1/E1 band. Please update the sampling frequency in the configuration file." << std::endl;
exit(1);
exit(0);
}
DLOG(INFO) << "role " << role;

View File

@ -63,7 +63,7 @@ GalileoE5aPcpsAcquisitionFpga::GalileoE5aPcpsAcquisitionFpga(
if (!acq_configuration_valid)
{
std::cout << "The FPGA does not support the required sampling frequency of " << acq_parameters_.fs_in << " SPS for the L5/E5a band. Please update the sampling frequency in the configuration file." << std::endl;
exit(1);
exit(0);
}
DLOG(INFO) << "role " << role;

View File

@ -63,7 +63,7 @@ GalileoE5bPcpsAcquisitionFpga::GalileoE5bPcpsAcquisitionFpga(const Configuration
if (!acq_configuration_valid)
{
std::cout << "The FPGA does not support the required sampling frequency of " << acq_parameters_.fs_in << " SPS for the E5b band. Please update the sampling frequency in the configuration file." << std::endl;
exit(1);
exit(0);
}
DLOG(INFO) << "role " << role;

View File

@ -63,7 +63,7 @@ GpsL1CaPcpsAcquisitionFpga::GpsL1CaPcpsAcquisitionFpga(
if (!acq_configuration_valid)
{
std::cout << "The FPGA does not support the required sampling frequency of " << acq_parameters_.fs_in << " SPS for the L1/E1 band. Please update the sampling frequency in the configuration file." << std::endl;
exit(1);
exit(0);
}
DLOG(INFO) << "role " << role;

View File

@ -63,7 +63,7 @@ GpsL2MPcpsAcquisitionFpga::GpsL2MPcpsAcquisitionFpga(
if (!acq_configuration_valid)
{
std::cout << "The FPGA does not support the required sampling frequency of " << acq_parameters_.fs_in << " SPS for the L2 band. Please update the sampling frequency in the configuration file." << std::endl;
exit(1);
exit(0);
}
DLOG(INFO) << "role " << role;

View File

@ -64,7 +64,7 @@ GpsL5iPcpsAcquisitionFpga::GpsL5iPcpsAcquisitionFpga(
if (!acq_configuration_valid)
{
std::cout << "The FPGA does not support the required sampling frequency of " << acq_parameters_.fs_in << " SPS for the L5/E5a band. Please update the sampling frequency in the configuration file." << std::endl;
exit(1);
exit(0);
}
DLOG(INFO) << "role " << role;