- Sep 30, 2018
-
-
Florian Kaltenberger authored
-
- Sep 20, 2018
-
-
laurent authored
-
Wang Tsu-Han authored
-
- Sep 19, 2018
-
-
Raphael Defosseux authored
Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- Sep 14, 2018
-
-
Cedric Roux authored
For whatever reason we need N_TA_offset to be 0 for the basic simulator to function properly. This is more a hack than a proper solution. More analysis is needed to understand what happens and what should be really done.
-
- Sep 13, 2018
-
-
Wang Tsu-Han authored
-
Wang Tsu-Han authored
-
- Sep 12, 2018
-
-
Wang Tsu-Han authored
-
- Sep 11, 2018
-
-
Wang Tsu-Han authored
-
- Sep 05, 2018
-
-
laurent authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
- Sep 04, 2018
-
-
Haruki NAOI authored
This reverts commit 31821838.
-
- Sep 03, 2018
-
-
Navid Nikaein authored
-
Robert Schmidt authored
* put mutex lock around instance_prach * destroy attributes
-
Robert Schmidt authored
* join pthread_FH (ru_thread) once all condition variables have been set * join RU FHTX only if it has been started (check as for pthread_create()) * join PRACH thread in the monolithic case * send broadcast on condition variable cond_eNBs, as there can be multiple waits on it * integrate stop_ru(*ru) into kill_RU_proc(*ru) * Correct memory freeing
-
Robert Schmidt authored
-
Robert Schmidt authored
* init_td_thread()/init_te_thread() are only initialized depending on condition get_nprocs() > 2 && codingw * apply the same the same for the functions kill_td_thread()/kill_te_thread()
-
Robert Schmidt authored
-
Robert Schmidt authored
-
- Aug 31, 2018
-
-
Wang Tsu-Han authored
-
- Aug 30, 2018
-
-
Haruki NAOI authored
-
- Aug 29, 2018
-
-
Haruki NAOI authored
-
- Aug 27, 2018
-
-
Cedric Roux authored
Various problems were found with the basic simulator. Variables used by various threads for synchronization need to be initialized properly. That is before the various threads start using them. This goes for: - UE->is_synchronized - UE->proc.instance_cnt_synch - UE->proc.instance_cnt_rxtx The function "UE->rfdevice.trx_start_func" was called in "UE_thread_synch" but should be called in "UE_thread" because "UE_thread" is the one that calls "UE->rfdevice.trx_read_func" and there is no guaranty that the call to "UE->rfdevice.trx_start_func" is done before as it has to (it's in another thread). And finally "pthread_cond_signal(&proc->cond_rxtx)" was called twice, which may not be a problem but was certainly not intended. Plus removing one call simplifies the code by removing some "if" logic, which is a good thing per se. This commit was not tested with a real UE and may thus introduce some issues. Hopefully not!
-
Cedric Roux authored
Before this commit we were checking for UE->is_synchronized == 0 then we were waiting for a potentially active synch routine to finish and then we were starting the synch routine again but the synch routine that was running may have set UE->is_synchronized to 1. This was leading to various problems, most notably the following message repeated over and over in the UE log and the UE unable to connect properly: [RRC] [UE 0] Frame 377: OUT OF SYNC FROM eNB 0 (T310 active 0 : T310 0, N310 345, N311 0) So let's wait for a potentially active synch routine to finish before anything else.
-
- Aug 24, 2018
-
-
frtabu authored
-
frtabu authored
-
frtabu authored
Use common log mechanism in layer 3, mapping specific macros to common ones and extending common log utilities to support specific layer3 requirements
-
frtabu authored
LOG_F replaced by LOG_DUMPMSG. Add a generic function to dump a buffer or message. Go on with LOG_M implementation improvement. Remove redundant options to enable/disable logs.
-
- Aug 23, 2018
-
-
laurent authored
-
- Aug 17, 2018
-
-
Cedric Roux authored
As reported by Robert Schmidt.
-
- Aug 16, 2018
-
-
Eino Virtanen authored
USRP addressess and clock sources can be configured in the configuration file with the RU section with comma separated IP addresses in 'sdr_addrs' and with strings "internal"/"external"/"gpsdo" in 'clock_src'. TODO: Currently the driver picks the two first RX and TX channels when nb_tx and nb_rx are both set to 2. If a developers wants to force usage of two devices, 'set_rx_subdev_spec' and 'set_tx_subdev_spec' can be used to indicate to the driver so that antennas from separate devices will be used. To rephrase: until 4 antennas are supported by OAI, testing with two devices, so that antennas from both devices are used, requires manual configuration of which subdevices' antennas are used. Conflicts: targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
-
- Aug 14, 2018
-
-
Cedric Roux authored
Compilation of UE softmodem failed.
-
- Aug 10, 2018
-
-
Konstantinos Alexandris authored
-
- Aug 06, 2018
-
-
laurent authored
-
- Aug 03, 2018
-
-
Cedric Roux authored
-
- Jul 31, 2018
-
-
Raphael Defosseux authored
-- stdbuf -o0 seems to be causing segmentation fault -- using daemon instead of nohup -- also repeating several time "got sync" message and flushing stdout/stderr Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
- Jul 30, 2018
-
-
frtabu authored
remove compilation warnings, especially when disabling T_TRACER. enhance LOG_M macro implementation, introduce LOG_DEBUG_XXX macro to replace #ifdef DEBUG_XXX
-