- Sep 26, 2017
-
-
oai authored
-
- Sep 24, 2017
-
-
frtabu authored
Improve configuration module error management at init time, Fix command line help option processing, remove shotopt field from parameter structure
-
- Sep 22, 2017
-
-
oai authored
Fix configuration module shared library improperly build and not loadable when libconfig version is below 1.5
-
- Sep 21, 2017
-
-
Francois TABURET authored
lte-softmodem -O <config file> will trigger legacy config mode ltesoftmodem -O libconfig:<config file> will trigger configuration module usage.
-
- Sep 14, 2017
-
-
Raymond Knopp authored
-
- Sep 03, 2017
-
-
frtabu authored
-
- Jul 06, 2017
-
-
Raymond Knopp authored
Note: this commit is work in progress. Contains initial integration of NFAPI data structures which are tested for TX path. RX path to follow.
-
- May 19, 2017
-
-
Cedric Roux authored
-
- May 15, 2017
-
-
Cedric Roux authored
-
- Apr 17, 2017
-
-
Raymond Knopp authored
-
Raymond Knopp authored
-
- Mar 23, 2017
-
-
Cedric Roux authored
see https://gitlab.eurecom.fr/oai/openairinterface5g/issues/227 When the UE connects to the eNodeB and receives its IP address from the network, it calls system() to set it in the linux kernel world. This call is not done in a realtime thread, but in the NAS, which uses its own thread, independent of the realtime processing. In some situations this totally disrupts realtime processing. It is difficult to know precisely why that happens, but it seems that calling fork(), as system() does, in a multi-threaded program is not a good idea. (So say several people on the internet.) It is not clear why the softmodem is impacted, but it seems that fork() is really what triggers the disruption. Several tests lead to that conclusion. To fix the problem, we create a child background process very early in main() (before anything else basically). Then instead of calling system(), the main process sends the string to the background process. The background process gets the string, passes it to system() and reports the success/failure back to the main process. This solution involves a lot of system calls, but calling system() in the first place is not cheap either. As long as no realtime thread uses this mechanism, things should be fine. Time will tell.
-
- Feb 20, 2017
-
-
Cedric Roux authored
Prior to this commit, the following command failed to build dlsim: ./build_oai --phy_simulators -c Choice has been made to define it in a .h file as a static inline function.
-
- Feb 17, 2017
-
-
Cedric Roux authored
We now have 4 versions of T_HEADER: - bad quality C++ version with time - good quality C version with time - bad quality C++ version without time - good quality C version without time
-
- Feb 09, 2017
-
-
Laurent authored
-
- Feb 02, 2017
-
-
Cedric Roux authored
Adapt calling sites too. When data comes from the user, it is good to check that what we read is correct and warn the user if it's not.
-
- Jan 30, 2017
-
-
Cedric Roux authored
we want those traces in the logs people send to us and the group HEAVY is disabled in the wiki instructions.
-
Cedric Roux authored
looks better
-
Cedric Roux authored
-
- Jan 25, 2017
-
-
Frédéric Leroy authored
-
Frédéric Leroy authored
-
Frédéric Leroy authored
-
- Jan 11, 2017
-
-
Cedric Roux authored
I chose to remove it from common/utils/itti/itti_types.h, maybe it's not the correct solution.
-
- Jan 09, 2017
-
-
Cedric Roux authored
-
- Jan 03, 2017
-
-
LTS authored
-
- Dec 26, 2016
-
-
laurent authored
-
- Dec 22, 2016
-
-
hbilel authored
-
- Dec 21, 2016
-
-
Wilson W.K. Thong authored
see issue #165
-
- Dec 19, 2016
-
-
hbilel authored
-
hbilel authored
-
hbilel authored
-
hbilel authored
-
Cedric Roux authored
-
- Dec 12, 2016
-
-
Chia-Yu Chang authored
-
- Dec 05, 2016
-
-
Cedric Roux authored
Normally it is used to display throughput. The computation it does is to sum up the wanted value for the last second (1000 TTIs) and send this value to the views associated to this logger, at each TTI.
-
Cedric Roux authored
This view is used to display throughput (to come in next commits).
-
Cedric Roux authored
- change paint function: when the XY plot is resized we scale. Previously the last range was put in the middle of the new range (say when we increase the size). We may get aspect ratio changes if the resize is not identical vertically and horizontally, but I think this behaviour is more 'natural'. - fix a bug: the last horizontal tick label was printed to far on the right, out of the bouding box of the XY plot. This is not totally fixed in the case the label is larger than the XY plot. Now the part out of the bounding box will be printed on the left. No big deal, make the plot big enough. (Before, even if big enough you had a problem.) - add a new vertical tick display, to be used for throughput mostly. See in enb.c the difference between 'input signal' and throughput plots (those throughput plots will come in later commits).
-
Cedric Roux authored
It's like a label but with fixed dimensions and maximum characters' capacity at creation time.
-
Cedric Roux authored
This function is used to print rates (say '1kb/s' or '16Mb/s').
-
Cedric Roux authored
-