Add cases for P25
This commit is contained in:
parent
9042f3fb18
commit
d618e8d46c
1 changed files with 10 additions and 0 deletions
|
@ -218,6 +218,11 @@ function getHeardList($logLines, $onlyLast) {
|
|||
$ysfloss = $loss;
|
||||
$ysfber = $ber;
|
||||
break;
|
||||
case "P25":
|
||||
$p25duration = $duration;
|
||||
$p25loss = $loss;
|
||||
$p25ber = $ber;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -263,6 +268,11 @@ function getHeardList($logLines, $onlyLast) {
|
|||
$loss = $ysfloss;
|
||||
$ber = $ysfber;
|
||||
break;
|
||||
case "P25":
|
||||
$duration = $p25duration;
|
||||
$loss = $p25loss;
|
||||
$ber = $p25ber;
|
||||
break;
|
||||
}
|
||||
|
||||
// Callsign or ID should be less than 11 chars long, otherwise it could be errorneous
|
||||
|
|
Loading…
Reference in a new issue