diff --git a/src/algorithms/signal_source/adapters/adrv9361_z7035_signal_source_fpga.cc b/src/algorithms/signal_source/adapters/adrv9361_z7035_signal_source_fpga.cc index 7d825c83c..616bef168 100644 --- a/src/algorithms/signal_source/adapters/adrv9361_z7035_signal_source_fpga.cc +++ b/src/algorithms/signal_source/adapters/adrv9361_z7035_signal_source_fpga.cc @@ -362,7 +362,7 @@ void Adrv9361z7035SignalSourceFPGA::run_buffer_monitor_process() // If a buffer overflow is detected, the receiver may not function correctly. // This compromises system reliability and can lead to undefined behavior. // To prevent further issues, execution is halted. - LOG(ERROR) << "Buffer Overflow Detected – Execution Halted"; + LOG(ERROR) << "Buffer Overflow Detected – Execution Halted"; exit(1); } std::this_thread::sleep_for(std::chrono::milliseconds(buffer_monitor_period_ms)); diff --git a/src/algorithms/signal_source/adapters/fmcomms5_signal_source_fpga.cc b/src/algorithms/signal_source/adapters/fmcomms5_signal_source_fpga.cc index 6dc7b3f26..2d689cfca 100644 --- a/src/algorithms/signal_source/adapters/fmcomms5_signal_source_fpga.cc +++ b/src/algorithms/signal_source/adapters/fmcomms5_signal_source_fpga.cc @@ -307,7 +307,7 @@ void Fmcomms5SignalSourceFPGA::run_buffer_monitor_process() // If a buffer overflow is detected, the receiver may not function correctly. // This compromises system reliability and can lead to undefined behavior. // To prevent further issues, execution is halted. - LOG(ERROR) << "Buffer Overflow Detected – Execution Halted"; + LOG(ERROR) << "Buffer Overflow Detected – Execution Halted"; exit(1); } std::this_thread::sleep_for(std::chrono::milliseconds(buffer_monitor_period_ms)); diff --git a/src/algorithms/signal_source/adapters/max2771_evkit_signal_source_fpga.cc b/src/algorithms/signal_source/adapters/max2771_evkit_signal_source_fpga.cc index 2b901ad84..a37eb4d93 100644 --- a/src/algorithms/signal_source/adapters/max2771_evkit_signal_source_fpga.cc +++ b/src/algorithms/signal_source/adapters/max2771_evkit_signal_source_fpga.cc @@ -427,7 +427,7 @@ void MAX2771EVKITSignalSourceFPGA::run_buffer_monitor_process() // If a buffer overflow is detected, the receiver may not function correctly. // This compromises system reliability and can lead to undefined behavior. // To prevent further issues, execution is halted. - LOG(ERROR) << "Buffer Overflow Detected – Execution Halted"; + LOG(ERROR) << "Buffer Overflow Detected – Execution Halted"; exit(1); } std::this_thread::sleep_for(std::chrono::milliseconds(buffer_monitor_period_ms)); @@ -437,7 +437,6 @@ void MAX2771EVKITSignalSourceFPGA::run_buffer_monitor_process() enable_ovf_check_buffer_monitor_active = false; } } - }