Skip to content
Snippets Groups Projects
Commit e5b0c265 authored by Melissa's avatar Melissa
Browse files

Changed sf_ahead based on NFAPI_MODE

parent 34b53ea9
No related branches found
No related tags found
6 merge requests!1757Draft: Use pMAX value in configuration file, instead of hardcoded '23' in asn1_msg.c,!1493fix DL arq errors in UE,!1381integration_2021_wk51_d_2,!1362WIP: integration_2021_wk50_a,!1271Draft: L2 Emulator for NSA Mode,!1059Multi-UE scalability with L2 Emulator
......@@ -86,7 +86,7 @@
#include "lte-softmodem.h"
extern int ue_id_g ;
extern int ue_id_g;
/* temporary compilation wokaround (UE/eNB split */
......@@ -95,7 +95,7 @@ pthread_mutex_t nfapi_sync_mutex;
int nfapi_sync_var=-1; //!< protected by mutex \ref nfapi_sync_mutex
uint16_t sf_ahead=1;
uint16_t sf_ahead=4;
int tddflag;
char *emul_iface;
......@@ -587,6 +587,11 @@ int main( int argc, char **argv ) {
get_options ();
if (NFAPI_MODE == NFAPI_MODE_STANDALONE_PNF) {
sf_ahead = 1;
}
printf("sf_ahead = %d\n", sf_ahead);
EPC_MODE_ENABLED = !IS_SOFTMODEM_NOS1;
printf("Running with %d UE instances\n",NB_UE_INST);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment