Increased sync threshold. Fixed some memory issues

This commit is contained in:
ismagom 2014-11-25 22:12:43 +00:00
parent 213b9467f3
commit 632e841dbe
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ int main(int argc, char **argv) {
"PDCCH-Miss: %5.2f%%, PDSCH-BLER: %5.2f%% (%d blocks)\r",
ue_sync_get_cfo(&ue_sync)/1000, ue_sync_get_sfo(&ue_sync)/1000,
10*log10f(snr), pdsch_average_noi(&ue_dl.pdsch),
100*(1-(float) nof_trials/ue_dl.nof_pdcch_detected),
100*(1-(float) ue_dl.nof_pdcch_detected/nof_trials),
(float) 100*ue_dl.pkt_errors/ue_dl.pkts_total,nof_trials, ue_dl.pkts_total);
}