Hangtime Safety Parenthesis
This commit is contained in:
parent
ea399e50a8
commit
0441b8fdbd
|
|
@ -150,7 +150,7 @@ getFrameSync (dsd_opts * opts, dsd_state * state)
|
|||
|
||||
//start control channel hunting if using trunking, time needs updating on each successful sync
|
||||
//will need to assign frequencies to a CC array for P25 since that isn't imported from CSV
|
||||
if (opts->p25_is_tuned == 0 && opts->p25_trunk == 1 && (time(NULL) - state->last_cc_sync_time > (opts->trunk_hangtime + 2)) )
|
||||
if (opts->p25_is_tuned == 0 && opts->p25_trunk == 1 && ( (time(NULL) - state->last_cc_sync_time) > (opts->trunk_hangtime + 2) ) )
|
||||
{
|
||||
|
||||
//test to switch back to 10/4 P1 QPSK for P25 FDMA CC
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ noCarrier (dsd_opts * opts, dsd_state * state)
|
|||
{
|
||||
|
||||
//tune back to last known CC when using trunking after x second hangtime
|
||||
if (opts->p25_trunk == 1 && opts->p25_is_tuned == 1 && time(NULL) - state->last_cc_sync_time > opts->trunk_hangtime)
|
||||
if (opts->p25_trunk == 1 && opts->p25_is_tuned == 1 && ( (time(NULL) - state->last_cc_sync_time) > opts->trunk_hangtime) )
|
||||
{
|
||||
if (state->p25_cc_freq != 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue