pdsch_enode: write requested number of frames to file

In pdsch_enode, when requesting "nf" frames be written to file, only 1 full frame was written. The "nf++" index increment line was inside the subframe for loop.
master
Douglas Anderson 9 years ago
parent ccdd8c327e
commit 59e4d9fa99

@ -653,8 +653,8 @@ int main(int argc, char **argv) {
start_of_burst=false;
#endif
}
nf++;
}
nf++;
sfn = (sfn + 1) % 1024;
}

Loading…
Cancel
Save