- Sep 21, 2017
-
-
knopp authored
-
- Sep 16, 2017
-
-
knopp authored
-
- Sep 03, 2017
-
-
frtabu authored
-
- Aug 17, 2017
-
-
knopp authored
addition of MPDCCH format 5. X_u_br sequences for BL/CE UE support and bugfixes in rx_prach0 for eMTC.
-
- Aug 13, 2017
-
-
knopp authored
complete programming of Msg2/Msg4 procedures for eMTC. Addition of skeleton for PUCCH UCI (NFAPI) in L1. Some cleanup of eNB_scheduler.c
-
- Jul 19, 2017
-
-
knopp authored
-
- Jul 06, 2017
-
-
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
-
-
Cédric Roux authored
Problems reported by Jorge Muñoz Castañer <jorgem@gti.uvigo.es>. - use Rel14 binaries (those are produced by default) - let -x option work to have graphical output - fix VCD missing 'echo'
-
- May 17, 2017
-
-
Cédric Roux authored
-
- May 15, 2017
-
-
Cédric Roux authored
-
- May 12, 2017
-
-
Francois TABURET authored
Discovered and fix problems in shared lib build for usrp,bladerf and lime
-
- Apr 17, 2017
-
-
knopp authored
-
- Apr 14, 2017
-
-
tctalcatel authored
-
tctalcatel authored
-
- Apr 12, 2017
-
-
tctalcatel authored
-
- Mar 28, 2017
-
-
Cédric Roux authored
-
Cédric Roux authored
-
Cédric Roux authored
-
Wilson authored
-
Wilson authored
-
Wilson authored
-
Wilson authored
-
- Mar 27, 2017
-
-
Cédric Roux authored
The presence of one or the other may lead to some failure/crash in some situations.
-
- Mar 24, 2017
-
-
Cédric Roux authored
-
Cédric Roux authored
The files NativeInteger.c.diff and constr_SET_OF.c.diff from asn1c were generating compilation warnings. We had local patches applied on generated files by asn1c. A new version of asn1c has been pushed to https://gitlab.eurecom.fr/oai/asn1c (commit 224dc1f991b7e7ad705ce92e171b942f87b7b7e7) making obsolete the fixes we do here. So we now remove those fixes. ************************* * IMPORTANT BEGIN * ************************* Everyone should update their asn1c installation. The simplest is to do: source oaienv cd cmake_targets ./build_oai -I ************************* * IMPORTANT END * *************************
-
- Mar 23, 2017
-
-
Cédric 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.
-
Cédric Roux authored
see oai/openairinterface5g#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.
-
- Mar 21, 2017
-
-
Calisson authored
-
- Mar 17, 2017
-
-
Cédric Roux authored
- README.txt modified - tests added in test_case_list.xml (only for test setup v2) - python code modified - configuration files added
-
Cédric Roux authored
-
- Mar 16, 2017
-
-
Cédric Roux authored
This work was done by Laurent Thomas.
-
Cédric Roux authored
On some hosts, compilations with the T tracer was failing. The error was: common/utils/T/T.h:15:19: fatal error: T_IDs.h: No such file or directory The problem was that in CMakeLists.txt some targets depend on the pre-generation of T_IDs.h but this dependancy relation was not set, so those targets could be generated before the T (it was the case with HASHTABLE). This commit fixes that. Basically, we take all the targets found in "add_executable" and "add_library" and make them depend on the T if the T is enabled. Almost all existing targets were added, even those that may not need it. The problem of this approach is that someone adding a new target using the T will not necessarily add a dependancy there. Another solution would be to generate T_IDs.h at "cmake" stage, not "make" stage and use an "if (NOT EXISTS T_IDs.h)" to generate the file. We lose the dependancy relation though. Things may be changed if maintenance cost is too high.
-
- Mar 15, 2017
-
-
Florian Kaltenberger authored
-
- Mar 13, 2017
-
-
Bilel authored
-
- Mar 10, 2017
-
-
Cédric Roux authored
New tests: 0186xx for TDD with the huawei 3276 dongle. All necessary files to configure and use it have been added. Existing code has been adapted for the TDD tests. Only the test setup v2 has been adapted. The file test_case_list.xml has been changed to add tests 0186xx, but only to work with test setup v2. It won't work with test setup v1. To be completed if needed. The tests are similar to FDD tests. Throughputs for TDD have to be adjusted, the throughputs of FDD are used for the moment.
-
Cédric Roux authored
-
- Mar 08, 2017
-
-
Bilel authored
-
- Feb 20, 2017
-
-
Cédric Roux authored
Let the user see how many warnings a compilation generates. The goal is to have 0 warning, for any compiled component of openair.
-
- Feb 17, 2017
-
-
Cédric Roux authored
When rebuilding oaisim, I had a failure because the target link already exists. The -f flag forces the link to be done.
-
Anta Huang authored
- build script has ability to indicate location for downloading uhd images - one simple wrapper to set environment variables and initiate another program (supposed to be lte-softmodem)
-