- Apr 03, 2017
-
-
gabrielC authored
-
- Mar 27, 2017
-
-
Wilson Thong authored
-
Wilson Thong authored
-
Wilson W.K. Thong authored
-
Cedric Roux authored
We have a strange problem with the timestamp of the very first packets received from the LimeSDR that leads to a complete failure of the eNB. A simple workaround is to discard the first RX packet just after a "start" of the device. We also change the value of "tx_sample_advance" to a more reasonable value. The problem of timestamp was "solved" differently in the past and at the time we needed to put a much higher value. This may have to be refined at some point.
-
- Mar 24, 2017
-
-
Cedric Roux authored
-
Cedric Roux authored
not sure of this one, to be checked
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
6 numbers (2 hexa digits each) separated by ':' plus ending 0 makes 18 bytes, not 6, let's put 20
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
- LMSSDR was not handled - bad #if usage - bad indentation still not very clean, but better
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
- Mar 23, 2017
-
-
Cedric Roux authored
- import RRC ASN.1 defintions from the specifications (file openair2/RRC/LITE/MESSAGES/asn1c/ASN1_files/RRC-e10.asn) contrary to rel8/10, all modules have been imported, maybe it's too much to refine in case of problems - deal with rel14 in fix_asn1 - all code that was for Rel10 is now for Rel10/Rel14 - some incompatible changes (mostly in naming) were resolved in favor of rel14, see in openair2/RRC/LITE/defs.h - unsure about the rlc layer, some arrays have changed (values appended), I only changed the definition and in tests in the code, I changed the index limit, maybe it's not enough Rel14 is the default compilation mode.
-
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.
-
Cedric Roux authored
-
Cedric Roux authored
This work was done by Bruno Mongazon.
-
- Mar 21, 2017
- Mar 20, 2017
-
-
Calisson authored
-
Cedric Roux authored
-
- Mar 16, 2017
-
-
Cedric Roux authored
-
- Mar 15, 2017
-
-
Florian Kaltenberger authored
-
- Mar 14, 2017
-
-
Calisson authored
-
- Mar 13, 2017
-
-
hbilel authored
-
Cedric Roux authored
-
- Mar 10, 2017
-
-
Rohit Gupta authored
-