1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-15 20:50:33 +00:00

FPGA compilation error fix

This commit is contained in:
Javier Arribas 2019-04-09 20:01:30 +02:00
parent 5673533e5a
commit a79280d029

View File

@ -151,7 +151,7 @@ void pcps_acquisition_fpga::send_positive_acquisition()
<< ", input signal power " << d_input_power; << ", input signal power " << d_input_power;
//the channel FSM is set, so, notify it directly the positive acquisition to minimize delays //the channel FSM is set, so, notify it directly the positive acquisition to minimize delays
d_channel_fsm->Event_valid_acquisition(); d_channel_fsm.lock()->Event_valid_acquisition();
} }
@ -170,11 +170,11 @@ void pcps_acquisition_fpga::send_negative_acquisition()
if (acq_parameters.repeat_satellite == true) if (acq_parameters.repeat_satellite == true)
{ {
d_channel_fsm->Event_failed_acquisition_repeat(); d_channel_fsm.lock()->Event_failed_acquisition_repeat();
} }
else else
{ {
d_channel_fsm->Event_failed_acquisition_no_repeat(); d_channel_fsm.lock()->Event_failed_acquisition_no_repeat();
} }
} }