Commit e0b7efb5 authored by Florian Kaltenberger's avatar Florian Kaltenberger

fixing regression in dlsim

parent 21abb9a4
...@@ -68,8 +68,8 @@ ...@@ -68,8 +68,8 @@
#include "PHY/INIT/phy_init.h" #include "PHY/INIT/phy_init.h"
void feptx_ofdm(RU_t *ru); void feptx_ofdm(RU_t *ru,int frame,int subframe);
void feptx_prec(RU_t *ru); void feptx_prec(RU_t *ru,int frame,int subframe);
double cpuf; double cpuf;
...@@ -1440,6 +1440,7 @@ int main(int argc, char **argv) ...@@ -1440,6 +1440,7 @@ int main(int argc, char **argv)
} }
eNB_rxtx_proc_t *proc_eNB = &eNB->proc.proc_rxtx[0];//UE->current_thread_id[subframe]]; eNB_rxtx_proc_t *proc_eNB = &eNB->proc.proc_rxtx[0];//UE->current_thread_id[subframe]];
proc_eNB->frame_tx = 0;
if (input_fd==NULL) { if (input_fd==NULL) {
...@@ -1652,8 +1653,8 @@ int main(int argc, char **argv) ...@@ -1652,8 +1653,8 @@ int main(int argc, char **argv)
ru->proc.tti_tx=subframe; ru->proc.tti_tx=subframe;
memcpy((void*)ru->frame_parms,(void*)&eNB->frame_parms,sizeof(LTE_DL_FRAME_PARMS)); memcpy((void*)ru->frame_parms,(void*)&eNB->frame_parms,sizeof(LTE_DL_FRAME_PARMS));
feptx_prec(ru); feptx_prec(ru,proc_eNB->frame_tx,subframe);
feptx_ofdm(ru); feptx_ofdm(ru,proc_eNB->frame_tx,subframe);
stop_meas(&eNB->ofdm_mod_stats); stop_meas(&eNB->ofdm_mod_stats);
...@@ -1671,8 +1672,8 @@ int main(int argc, char **argv) ...@@ -1671,8 +1672,8 @@ int main(int argc, char **argv)
ru->proc.tti_tx=(subframe+1)%10; ru->proc.tti_tx=(subframe+1)%10;
feptx_prec(ru); feptx_prec(ru,proc_eNB->frame_tx,subframe+1);
feptx_ofdm(ru); feptx_ofdm(ru,proc_eNB->frame_tx,subframe+1);
proc_eNB->frame_tx++; proc_eNB->frame_tx++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment