- 21 Jun, 2017 2 commits
- 16 Jun, 2017 1 commit
-
-
Cedric Roux authored
-
- 08 Jun, 2017 1 commit
-
-
Florian Kaltenberger authored
-
- 06 Jun, 2017 1 commit
-
-
Florian Kaltenberger authored
re-adding the possibility in dlsim to bypass the DCI/PDCCH generation. This is necessary for accuracy of the dlsim-tests, which are working again now.
-
- 02 Jun, 2017 4 commits
-
-
Cedric Roux authored
-
Frank Zdarsky authored
Signed-off-by:
Frank A. Zdarsky <fzdarsky@redhat.com>
-
Cedric Roux authored
- rename UE_NO_LOG to DISABLE_LOG_X because the name is misleading. The full software is impacted, not only the UE part - same for compilation option ---ue-no-log that becomes --disable-log - keep LOG_X for the standard case, that is the case without DISABLE_LOG_X where printf has been put. Two reasons: * printf is not realtime friendly * keep behavior similar for other users who may be troubled by different logs that don't add any benefit to previous logs
-
tctalcatel authored
-
- 31 May, 2017 3 commits
-
-
-
Frank Zdarsky authored
Signed-off-by:
Frank A. Zdarsky <fzdarsky@redhat.com>
-
tctalcatel authored
-
- 19 May, 2017 2 commits
-
-
Cedric 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'
-
Gabriel authored
--ue-trace : Enabling UE trace for debug --ue-timing : Enabling UE timing trace --ue-no-log : Disabling all LOG_X traces
-
- 17 May, 2017 1 commit
-
-
Cedric Roux authored
-
- 15 May, 2017 1 commit
-
-
Cedric Roux authored
-
- 12 May, 2017 1 commit
-
-
Francois TABURET authored
Discovered and fix problems in shared lib build for usrp,bladerf and lime
-
- 14 Apr, 2017 2 commits
-
-
tctalcatel authored
-
tctalcatel authored
-
- 12 Apr, 2017 1 commit
-
-
tctalcatel authored
-
- 28 Mar, 2017 7 commits
-
-
Cedric Roux authored
-
Cedric Roux authored
-
Cedric Roux authored
-
Wilson authored
-
Wilson authored
-
Wilson authored
-
Wilson authored
-
- 27 Mar, 2017 1 commit
-
-
Cedric Roux authored
The presence of one or the other may lead to some failure/crash in some situations.
-
- 24 Mar, 2017 2 commits
-
-
Cedric Roux authored
-
Cedric 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 * *************************
-
- 23 Mar, 2017 2 commits
-
-
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 #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.
-
- 21 Mar, 2017 1 commit
-
-
Calisson authored
-
- 20 Mar, 2017 1 commit
-
-
Elena Lukashova authored
for DCI format 2. Temporaryly going back to the previous version of code. 2. Enabling rate adaptation with multiple HARQ rounds. (no change inside the rounds).
-
- 17 Mar, 2017 2 commits
-
-
Cedric Roux authored
- README.txt modified - tests added in test_case_list.xml (only for test setup v2) - python code modified - configuration files added
-
Cedric Roux authored
-
- 16 Mar, 2017 2 commits
-
-
Cedric Roux authored
This work was done by Laurent Thomas.
-
Cedric 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.
-
- 15 Mar, 2017 1 commit
-
-
Florian Kaltenberger authored
-
- 13 Mar, 2017 1 commit
-
-
Bilel authored
-