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.
This commit is contained in:
Douglas Anderson 2016-03-03 17:38:30 -07:00
parent ccdd8c327e
commit 59e4d9fa99
1 changed files with 1 additions and 1 deletions

View File

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