Cedric Roux
c124e32ab5
Merge branch 'develop_integration_w15' into 'develop'
...
develop_integration_w15 into develop
Summary of changes:
- DCI1 20MHz phy-test bug fix
- RLC UM/AM max header size fix
- UE autotests improvements
See merge request !177
2017-04-18 10:03:46 +02:00
Cedric Roux
fc4d03d419
fix tm1 generic configuration file
...
- RBs set to 25
- disable SRS
2017-04-18 09:55:37 +02:00
Cedric Roux
20a2bfd109
hotfix: fix TDD 20MHz DCI0 structure
...
In 20MHz the UE didn't do any uplink granted by DCI0.
It was replying to RAR, so uplink decoding was okay.
Turns out the DCI0 structure for TDD was wrong.
2017-04-14 18:17:13 +02:00
Cedric Roux
2e86a60982
Merge remote-tracking branch 'origin/UE_autotest_For_20Mhz' into develop_integration_w15
2017-04-14 16:18:19 +02:00
Cedric Roux
89292a763d
Merge remote-tracking branch 'origin/eNB_phy-test_fix_20MHz' into develop_integration_w15
2017-04-14 16:18:05 +02:00
Cedric Roux
ab907918b0
Merge remote-tracking branch 'origin/bugfix-234-rlc-um-max-header-size' into develop_integration_w15
2017-04-14 16:17:51 +02:00
tctalcatel
58aa9f1f52
change eNB and UE name
2017-04-14 09:07:13 +02:00
tctalcatel
5498741f0b
Add 20 MHz test for the default XML file
2017-04-14 09:03:12 +02:00
tctalcatel
2e8d01f36b
UE autotest 20 MHz
2017-04-12 12:01:32 +02:00
GabrielCouturier
fd618f4357
Fix eNB phy-test 20MHz DCI1
2017-04-11 16:56:07 +02:00
Cedric Roux
965aa5e6ef
change value of RLC_AM_MAX_SDU_IN_PDU and RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU
...
Fabrice Nabet (TCL) suggests the value 128 for both.
See https://gitlab.eurecom.fr/oai/openairinterface5g/issues/234#note_3179
2017-04-11 09:32:14 +02:00
Cedric Roux
94f880ad23
bugfix: increase RLC UM header size
...
The constant RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU is set to 24. This is
too low. Running a downlink TCP iperf with a 10MHz or 20MHz cell
leads to lots of the following warning in the log:
[RLC][W][SN 792] Bad RLC header! Discard this RLC PDU (size=618)
The problem is that the uplink RLC PDU contains a lot of TCP ack.
We can see much more than 24 of them. The RLC layer is not happy
and discards the PDU.
Putting 256 for RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU (arbitrarily chosen,
big but not too big) solves the problem, at least for 10MHz.
2017-04-10 17:31:21 +02:00
Cedric Roux
fbcc9a2393
minor: bad comparison
...
it was:
*num_li_pP >= RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU
it should be:
*num_li_pP > RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU
2017-04-10 17:30:43 +02:00
Cedric Roux
38abafed2e
Merge branch 'develop_integration_w14' into 'develop'
...
develop_integration_w14 into develop
Summary of changes:
- minor bug fixes, minor improvements
See merge request !173
2017-04-10 11:00:11 +02:00
Cedric Roux
10113a3517
integration fix: change the way to print the version
...
Using "system" to call "git log" is too error-prone.
In the test setup, lte-softmodem was blocked because
"git log" uses a pager ("less") and the pager was
waiting for the user to press enter.
We could pass "--no-pager" to "git log" but then
what if someone runs the softmodem out of the source
tree?
cmake defines PACKAGE_VERSION, we can use that instead,
as is done in openair-cn.
2017-04-10 10:29:09 +02:00
Cedric Roux
f50ea1b14c
Merge remote-tracking branch 'origin/update_readme' into develop_integration_w14
2017-04-10 09:39:18 +02:00
Florian Kaltenberger
01b1101288
update readme files
2017-04-08 17:20:32 +02:00
Cedric Roux
61033059c4
Merge remote-tracking branch 'origin/hotfix-rb-table-w14' into develop_integration_w14
2017-04-07 16:55:18 +02:00
Cedric Roux
6f02decf7a
Merge remote-tracking branch 'origin/oai_ue_log_improvement' into develop_integration_w14
2017-04-07 16:55:06 +02:00
Cedric Roux
e7f1cf4238
hotfix: revert value of 'rb_table_index'
...
This reverts commit 7f24927c43 .
With value 13 uplink TDD for a 10MHz configuration was not working.
UDP traffic sent with: "iperf -c XX -u -b10M" was crashing
the eNB.
2017-04-03 14:22:10 +02:00
gabrielC
666ae5d0e1
commit id added to the log
2017-04-03 14:06:41 +02:00
Cedric Roux
316f6aba9e
Merge branch 'develop_integration_w13' into 'develop'
...
Develop integration w13
Summary of changes:
- RLC AM reworking (a lot has changed)
- several bug fixes
* support processing multiple MAC RAR control elements in a single MSG2
* fix ACK/NACK resetting
* do not correct USRP frequency from carrier offset estimation when --ue-carrier-scan == off
* fix TDD uplink due to incorrect PUCCH format for SR in TDD
* several other simple fixes
- better support for LMS SDR
See merge request !168
2017-04-03 10:36:45 +02:00
Cedric Roux
c36c04537a
integration fix: fixes for pthread_getname_np
...
- define _GNU_SOURCE before including pthread.h
- do not use static for the array 'threadname' used
to store the name, it makes it a global variable
accessed by several threads in parallel
- increase size of 'threadname' (maybe not necessary)
- properly indent #define / #under (# should be at column 1)
2017-04-03 10:26:42 +02:00
Cedric Roux
a032502713
Merge remote-tracking branch 'origin/bugfix-189-rlc-am-fixes' into develop_integration_w13
2017-03-30 10:21:10 +02:00
hbilel
49006696ac
RLC AM add various fixes
2017-03-29 15:59:16 +02:00
hbilel
bb4131b33d
RLC AM add fixes
2017-03-28 19:59:52 +02:00
hbilel
3c7c61a46c
RLC AM fix specific reassembly issue
2017-03-28 18:08:00 +02:00
Cedric Roux
2437d0fbd0
Merge remote-tracking branch 'origin/fix-dlsim-w13' into develop_integration_w13
2017-03-28 17:33:26 +02:00
Cedric Roux
37c71e5a02
Merge remote-tracking branch 'origin/dlsim-fix-w13' into develop_integration_w13
2017-03-28 17:33:16 +02:00
Cedric Roux
c207df8b0e
bugfix: dlsim was not working anymore
...
When you ran it with the scope as:
./dlsim -X
you saw no activity in the "PDSCH I/Q of MF Output" window,
so matter what SNR you put (even for very high SNR, say: ./dlsim -X -s40)
this commit seems to fix it.
I am not sure it is the end of story. The 2 threads PDCCH/PDSCH structures
may still not be used correctly everywhere.
2017-03-28 17:25:27 +02:00
Florian Kaltenberger
99280926ed
fix in dlsim to catch cases where pdcch is not decoded
2017-03-28 17:24:21 +02:00
Cedric Roux
72c387987b
Merge remote-tracking branch 'origin/bugfix-229' into develop_integration_w13
2017-03-28 16:24:08 +02:00
Cedric Roux
26f06f35fe
Merge remote-tracking branch 'origin/bugfix-226' into develop_integration_w13
2017-03-28 16:22:23 +02:00
Cedric Roux
0a33a1d3e7
Merge remote-tracking branch 'origin/bugfix-223' into develop_integration_w13
2017-03-28 16:21:20 +02:00
Cedric Roux
2af0ef847b
Merge remote-tracking branch 'origin/bugfix-222' into develop_integration_w13
2017-03-28 16:20:21 +02:00
Cedric Roux
740d3f647d
Merge remote-tracking branch 'origin/bugfix-221' into develop_integration_w13
2017-03-28 16:18:45 +02:00
Cedric Roux
b7762c6a7d
Merge remote-tracking branch 'origin/bugfix-220' into develop_integration_w13
2017-03-28 16:15:32 +02:00
Cedric Roux
9814de0570
revert deletion of directories to before commit 9e78b40d2e
2017-03-28 16:13:31 +02:00
Cedric Roux
02bfef2184
fix UE variable setting in build_oai
2017-03-28 16:03:17 +02:00
Cedric Roux
9af7f280b7
Merge remote-tracking branch 'origin/bugfix-219' into develop_integration_w13
2017-03-28 10:24:01 +02:00
Cedric Roux
9a464ca077
fix: remove change in build_helper
2017-03-28 10:13:54 +02:00
Cedric Roux
ca0ff4b51f
Merge remote-tracking branch 'origin/lmssdr-fix-w13' into develop_integration_w13
2017-03-28 10:05:21 +02:00
Wilson Thong
adf920b6a9
#229 add support on processing multiple RAR payloads in one single MSG2
2017-03-28 10:56:18 +08:00
Wilson Thong
f65150aa64
#226 fix incorrect resetting downlink ACK/NACK in the middle of UE_TX processing
2017-03-28 10:52:41 +08:00
Wilson Thong
40f9b9f4e0
#223 fixed USRP initialization when disabling --ue-carrier-scan option
2017-03-28 10:48:38 +08:00
Wilson Thong
002b9b0f65
#222 fix incorrect PUCCH format when sending SR in TDD
2017-03-28 10:42:22 +08:00
Wilson Thong
0487631c76
#221 fixed crash when processing false DCI1A due to incorrect HARQ-PID checking
2017-03-28 10:39:09 +08:00
Wilson W.K. Thong
8d88bae9e8
#221 fixed incorrect processing of CQI_PMI_Index in RRCConnectionReconfiguration
2017-03-28 10:39:09 +08:00
Wilson W.K. Thong
2660ac0570
#221 fixed RRC crash when parsing the RRCConnectionReconfiguration message with empty neighCellConfig in measObjectEUTRA
2017-03-28 10:39:09 +08:00
Wilson Thong
924c421beb
#220 add help printout for run options
2017-03-28 10:17:51 +08:00
Vincent Ng
4fea65a265
#220 change the I/Q in soft-scope to be normalized wrt |h|
2017-03-28 10:17:51 +08:00
Wilson W.K. Thong
4a2f9d2571
#220 enhance logging to show also thread name
2017-03-28 10:17:51 +08:00
Wilson Thong
040957c1d4
#220 fixed incorrect wiresahrk SFN/SF for UL/DL data
2017-03-28 10:17:51 +08:00
Wilson Thong
9e78b40d2e
#220 fixed minor typo
2017-03-28 10:17:51 +08:00
Wilson Thong
66c5892c9e
#220 fixed incorrec path config for building usim/nvram
2017-03-28 10:17:51 +08:00
Wilson Thong
e6798f5b96
#219 add build option for building eclipse project files
2017-03-28 10:11:43 +08:00
Wilson Thong
5dfdec6c25
#219 add minimum support for running and building UE and eNB
2017-03-28 10:11:43 +08:00
Cedric Roux
fa0b8668fb
bugfix: workaround a problem with timestamp and LMSSDR.
...
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.
2017-03-27 16:32:42 +02:00
fnabet
1213521c30
merge from 2017.w12
2017-03-27 11:38:52 +02:00
Cedric Roux
a77082c1ed
Merge branch 'develop_integration_w12' into 'develop'
...
develop_integration_w12 into develop
Summary of changes:
- RRC Rel14: tests done so far indicate no problem
- SRS support in eNB
- bug fixes / warning removals
See merge request !155
2017-03-27 11:03:57 +02:00
Cedric Roux
b6991ab2e0
autotest v2: remove nasmesh and ue_ip module kernels before anything else
...
The presence of one or the other may lead to some failure/crash in
some situations.
2017-03-27 10:19:23 +02:00
Cedric Roux
5485f131c3
bugfix: Rel14 was missing
2017-03-24 18:05:11 +01:00
Cedric Roux
af8ce457f3
bugfix: fix nos1 compilation
2017-03-24 18:01:39 +01:00
Cedric Roux
4e3acb6a5d
integration fix: disable XER_PRINT
...
This generates too much prints and may disrupt realtime.
This has to be off by default.
2017-03-24 17:18:51 +01:00
Cedric Roux
fc5c876a81
Merge remote-tracking branch 'origin/feature-228-rrc-rel14' into develop_integration_w12
2017-03-24 17:08:27 +01:00
Cedric Roux
75aff99bf6
Merge remote-tracking branch 'origin/bugfix-227-ue-ip-setting' into develop_integration_w12
2017-03-24 17:08:08 +01:00
Cedric Roux
fec6832122
Merge remote-tracking branch 'origin/if5-fixes-w11' into develop_integration_w12
2017-03-24 17:07:51 +01:00
Cedric Roux
c54cb41805
Merge remote-tracking branch 'origin/various-fixes-w12' into develop_integration_w12
2017-03-24 17:07:26 +01:00
Cedric Roux
b8c4365479
Merge remote-tracking branch 'origin/feature-218-srs' into develop_integration_w12
2017-03-24 17:07:10 +01:00
Cedric Roux
5db0548af0
bugfix
2017-03-24 16:55:30 +01:00
Cedric Roux
b5a03474bf
remove asn1 compilation fixes that went to asn1c (IMPORTANT: reinstall asn1c!)
...
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 *
*************************
2017-03-24 16:46:42 +01:00
Cedric Roux
6448738e9b
bugfix/compilation warning removal in ulsim
2017-03-24 15:53:52 +01:00
Cedric Roux
583123e042
bugfix/compilation warning removal in dlsim
2017-03-24 15:49:19 +01:00
Cedric Roux
53bb6a8c2c
compilation warning removal
2017-03-24 15:33:51 +01:00
Cedric Roux
d296abb8d0
compilation warning removal
2017-03-24 15:24:35 +01:00
Cedric Roux
5345b160fc
compilation warning removal
2017-03-24 15:23:43 +01:00
Cedric Roux
045132ba6e
compilation warning removal
2017-03-24 15:20:56 +01:00
Cedric Roux
4080a63938
compilation warning removal
2017-03-24 15:18:57 +01:00
Cedric Roux
f754e31ead
compilation warnings removal
2017-03-24 15:17:13 +01:00
Cedric Roux
7a6709a24e
warning removal/bug fixes/adding logs in rb_tool.c
2017-03-24 15:12:52 +01:00
Cedric Roux
676ca5c3a0
compilation warning removal
2017-03-24 14:40:00 +01:00
Cedric Roux
dfcbeff0d4
bugfix/warning removal
...
not sure of this one, to be checked
2017-03-24 14:26:16 +01:00
Cedric Roux
181eb532e1
bugfix
2017-03-24 14:23:11 +01:00
Cedric Roux
bc10722013
warnings removal
2017-03-24 14:20:06 +01:00
Cedric Roux
60efa62dc8
compilation warning removal
2017-03-24 13:09:35 +01:00
Cedric Roux
7c7022a198
compilation warning removal
2017-03-24 13:08:45 +01:00
Cedric Roux
89c60dacfd
compilation warning removal
2017-03-24 13:07:21 +01:00
Cedric Roux
34c303efb5
compilation warning removal
2017-03-24 13:05:08 +01:00
Cedric Roux
e9d88a101d
bugfix: array too short for data
...
6 numbers (2 hexa digits each) separated by ':'
plus ending 0 makes 18 bytes, not 6, let's put 20
2017-03-24 13:02:52 +01:00
Cedric Roux
e5c5185eda
compilation warning removal
2017-03-24 12:47:00 +01:00
Cedric Roux
e268611bec
bugfix
2017-03-24 12:45:17 +01:00
Cedric Roux
4a6e433b21
compilation warning removal
2017-03-24 12:41:10 +01:00
Cedric Roux
b95ff08295
compilation warning removal
2017-03-24 12:40:11 +01:00
Cedric Roux
cfac326c00
compilation warning removal
2017-03-24 12:39:11 +01:00
Cedric Roux
c01d9dc1f0
compilation warning removal
2017-03-24 12:34:15 +01:00
Cedric Roux
99b521901c
compilation warning removal
2017-03-24 12:33:09 +01:00
Cedric Roux
6977429706
compilation warning removal
2017-03-24 12:32:58 +01:00
Cedric Roux
ac437d3d12
compilation warning removal
2017-03-24 12:30:06 +01:00
Cedric Roux
d2098da06c
fix targets/COMMON/openairinterface5g_limits.h
...
- LMSSDR was not handled
- bad #if usage
- bad indentation
still not very clean, but better
2017-03-24 12:27:46 +01:00
Cedric Roux
71fde41477
compilation warning removal
2017-03-24 12:21:45 +01:00
Cedric Roux
b3d9e19899
compilation warning removal
2017-03-24 12:21:04 +01:00
Cedric Roux
aaac4894c9
compilation warning removal
2017-03-24 12:17:08 +01:00
Cedric Roux
92ee6017cd
compilation warning removal
2017-03-24 12:09:09 +01:00
Cedric Roux
7514e7139a
compilation warning removal
2017-03-24 12:08:31 +01:00
Cedric Roux
048f07f67f
compilation warning removal
2017-03-24 12:07:51 +01:00
Cedric Roux
3ce5f50755
compilation warning removal
2017-03-24 12:03:56 +01:00
Cedric Roux
a3f7ceb395
compilation warning removal
2017-03-24 12:02:08 +01:00
Cedric Roux
1789b3de59
compilation warning removal
2017-03-24 12:00:58 +01:00
Cedric Roux
e82c6764f9
compilation warning removal
2017-03-24 12:00:23 +01:00
Cedric Roux
bf3a4f6464
compilation warning removal
2017-03-24 12:00:04 +01:00
Cedric Roux
d8627b5e3f
compilation warning removal
2017-03-24 11:59:27 +01:00
Cedric Roux
2291f4ebec
compilation warning removal
2017-03-24 11:58:01 +01:00
Cedric Roux
216cd0bf02
compilation warning removal
2017-03-24 11:56:34 +01:00
Cedric Roux
8dd8a97c34
compilation warning removal
2017-03-24 11:55:32 +01:00
Cedric Roux
11856c6b00
compilation warning removal: allocate_REs set but not used
...
I removed this variable entirely because it's not used.
Maybe the bug is that it's not used after being set?
To be checked and fixed at some point.
2017-03-24 11:53:34 +01:00
Cedric Roux
774452bbbb
compilation warning removal
...
this variable does not seem to be used, to be removed?
2017-03-24 11:50:56 +01:00
Cedric Roux
4fcb6272f4
RRC Rel14
...
- 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.
2017-03-23 18:06:40 +01:00
Cedric Roux
cff9149920
fix issue 227 - UE IP settings disrupts realtime
...
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.
2017-03-23 12:34:24 +01:00
Cedric Roux
89f747a218
minor fixes
2017-03-23 10:40:47 +01:00
Cedric Roux
238b22e5b5
fixes for IF5
...
This work was done by Bruno Mongazon.
2017-03-23 09:23:07 +01:00
Cedric Roux
fe0b84ddaf
fix: revert ue_eurecom_test_sfr.conf to its previous state
...
Keys/IDs have been inadvertently changed.
2017-03-22 12:38:03 +01:00
Calisson
9d3eed3b43
fixing ulsim
2017-03-21 15:02:20 +01:00
Calisson
7685cf1811
fixing srs in msg3. now all SRS subframe configs work.
2017-03-21 14:16:19 +01:00
Calisson
98efcd5220
fixing a bug related to SRS procedures
2017-03-21 09:37:08 +01:00
Calisson
1677e8f847
Merge remote-tracking branch 'origin/develop' into feature-218-srs
2017-03-20 17:15:26 +01:00
Calisson
e2d46f8040
adding mechanism for SRS scheduling of multiple UEs.
2017-03-20 17:13:42 +01:00
Cedric Roux
bd17343334
Merge branch 'develop_integration_w11' into 'develop'
...
Develop integration w11
Summary of changes:
- bug fixes
- RCC/RRU in automatic test setup
- more work on UE/MIMO
- LimeSDR support (5/10MHz)
- compilation under ubuntu 16.04, in particular kernel modules (nasmesh, ue_ip)
See merge request !148
2017-03-20 13:55:44 +01:00
Cedric Roux
d0a51bec01
hotfix: put back "system" for UE to setup its IP settings
...
We'll need to to do it in a separate thread/process.
To be done. In the meantime, put it back. It impacts
oaisim.
2017-03-20 13:45:29 +01:00
Cedric Roux
e2350103f4
hotfix: LLR was calling qam64_qam16_avx2 instead of qam64_qam64_avx2
...
Not sure of this one, to be checked by TCL.
2017-03-20 13:33:27 +01:00
Cedric Roux
1218cc8f65
bugfix: fix dump_dlsch2
...
the argument 'coded_bits_per_codeword' has to be an array in
case of several codewords.
The calling sites have been adapted.
Today, only the first index is used, so calling sites where
'coded_bits_per_codeword' is an integer pass the address
of it. It is expected that 'dump_dlsch2' will check in the
future that there is one or two codewords and only access
'coded_bits_per_codeword[1]' when it's sure there are
really two codewords.
2017-03-20 11:15:57 +01:00
Cedric Roux
7ffc20426b
integration fix: let simulators compile again
...
- pucchsim
- prachsim
- pdcchsim
- pbchsim
- mbmssim
Mostly, add and initialize the variable 'cpuf'.
Also, pdcchsim was calling rx_pdcch with wrong
arguments.
2017-03-20 11:00:41 +01:00
Cedric Roux
5014b84c30
integration fix: let ulsim compile again + minor modification in dlsim_tm4
2017-03-20 10:43:50 +01:00
Cedric Roux
f2e9e3f2dc
integration fix: let dlsim compile again
...
Same as previous commit 41dda3d3de
but for dlsim.
2017-03-20 10:40:26 +01:00
Cedric Roux
41dda3d3de
integration fix: let dlsim_tm4 compile again
...
The variables that were duplicated per processing thread
were adapted. 'cpuf' was defined and initialized.
2017-03-20 10:38:25 +01:00
Cedric Roux
fd1e01579c
bugfix: set cpuf in oaisim
2017-03-20 10:28:11 +01:00
gabrielC
d86c5a9092
Merge branch 'UE_Remove_LOG' into develop_integration_w11
2017-03-20 09:20:20 +01:00
gabrielC
1e2f952a9c
Remove to frequent log in 20 MHz
2017-03-20 09:18:02 +01:00
Cedric Roux
2011c7d689
Merge remote-tracking branch 'origin/ulsim-bugfix-w11' into develop_integration_w11
2017-03-18 00:10:50 +01:00
Cedric Roux
1c57eadd33
fix: remove useless test
...
One check introduced by previous commit was not necessary.
2017-03-18 00:09:48 +01:00
Cedric Roux
2a44ae639e
Merge remote-tracking branch 'origin/rru-rrh-test-setup-w11' into develop_integration_w11
2017-03-17 19:39:50 +01:00
Cedric Roux
7847143610
Merge remote-tracking branch 'origin/bugfix-224-ue-tcrnti' into develop_integration_w11
2017-03-17 19:33:56 +01:00
Cedric Roux
a19a27ff33
test setup v2: add RRU/RRC tests
...
- README.txt modified
- tests added in test_case_list.xml
(only for test setup v2)
- python code modified
- configuration files added
2017-03-17 18:58:55 +01:00
Cedric Roux
19bd4d8cf7
test setup v2: simplify softmodem tests variable definition
2017-03-17 16:08:25 +01:00
fnabet
7f9b19cce8
UE Issue224 fix on TCRNTI
2017-03-17 10:52:59 +01:00
Florian Kaltenberger
c13d5c21f3
added null pointer check for ulsim
2017-03-16 18:05:23 +01:00
Cedric Roux
639d2eefc6
Merge remote-tracking branch 'origin/phy-test-fix' into develop_integration_w11
2017-03-16 18:01:23 +01:00
Cedric Roux
faa5e07af8
Merge remote-tracking branch 'origin/T-compilation-fix-w11' into develop_integration_w11
2017-03-16 18:00:46 +01:00
Cedric Roux
b440abef33
Merge remote-tracking branch 'origin/ubuntu-16-compilation' into develop_integration_w11
2017-03-16 17:59:22 +01:00
Cedric Roux
b2bda9498c
Merge remote-tracking branch 'origin/calib-LimeSDR' into develop_integration_w11
2017-03-16 17:57:48 +01:00
Cedric Roux
c6581031d5
various quick fixes
2017-03-16 17:37:05 +01:00
gabrielC
4ae599990a
Merge branch 'UE_20MHz_and_Log_improvement' into develop_integration_w11
2017-03-16 17:08:42 +01:00
gabrielC
d5a9334306
20MHz improvement for scope (still need to be fixed for 20MHz LLR) and Log
2017-03-16 17:06:34 +01:00
fnabet
353334f69b
RLC AM Rx PDU Segment changes
2017-03-16 16:45:44 +01:00
Cedric Roux
20b420bb84
fix compilation for ubuntu 16
...
This work was done by Laurent Thomas.
2017-03-16 14:44:38 +01:00
gabrielC
415201c3dc
Merge remote-tracking branch 'origin/Correction_for_dlsch_channel_level_calculation' into develop_integration_w11
2017-03-16 11:47:25 +01:00
gabrielC
950c1c060e
Correction of dlsch channel calculation
2017-03-16 11:45:07 +01:00
Cedric Roux
fc6dec9edd
fix dependancies in CMakeLists.txt for the T tracer
...
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.
2017-03-16 11:22:05 +01:00
fnabet
01530385f1
RLC AM fix Tx Status Report
2017-03-15 18:56:53 +01:00
Florian Kaltenberger
65f49f9ffd
bugfixes to previous commit and ulsim. now srs estimaton seems to work. at least in ulsim.
2017-03-15 17:43:18 +01:00
Cedric Roux
f5aa0135b1
hotfix: fix buffer size for phy-test mode 20MHz
...
768*8 is too small, in 20MHz, the phy-test mode
(in default mode?) has a buffer of size 6378.
Let's set the buffer size to the input's one plus 4 bytes
(to accomodate for CRC, not sure about this).
2017-03-15 17:17:54 +01:00
gabrielC
40fa3e076c
RLC AM Rx fixes
2017-03-15 16:58:54 +01:00
GabrielCouturier
18f628848c
RLC AM Fix on ReTx
2017-03-15 16:54:01 +01:00
Florian Kaltenberger
b4f8219170
calibrations for 5/10/20 MHz LimeSDR
2017-03-15 16:04:42 +01:00
fnabet
bf71c6f01e
RLC AM Tx Segment: fix
2017-03-15 10:10:32 +01:00
Calisson
1e193853eb
WIP: adding srs channel estimation to eNB. estimation results yet to be checked.
2017-03-14 17:13:14 +01:00
gabrielC
752b305270
Merge branch 'pdcch_dual_buffer' into develop_integration_w11
2017-03-14 15:44:13 +01:00
gabrielC
28a50c15e9
Remove some print and correct rnti for the pdcch_vars odd/even subframe
2017-03-14 15:35:21 +01:00
fnabet
c1da605f6d
RLC AM code cleaning
2017-03-14 10:10:36 +01:00
GabrielCouturier
cf9727c4be
RLC AM fix bad assert for resegmentation
2017-03-13 19:44:52 +01:00
gabrielC
dabf833c10
RLC AM Rx Segment and Tx Status Report fixes
2017-03-13 19:41:24 +01:00
fnabet
4a331c6fb3
Merge tag '2017.w10' into bugfix-189-rlc-am-fixes
2017-03-13 16:13:07 +01:00
fnabet
3a43c08ae3
RLC AM fix RX Segment
2017-03-13 15:54:27 +01:00
hbilel
bd4898222f
pdcch dual buffer
2017-03-13 15:50:10 +01:00
Cedric Roux
bd3394f528
Merge branch 'develop_integration_w10' into 'develop'
...
Develop integration w10
Summary of changes:
- MIMO for UE
- TDD in test setup
- bug fixes
See merge request !133
2017-03-13 15:48:07 +01:00
Cedric Roux
a500b2b293
integration fix: fix compilation of ulsim
...
We use the odd/even dlsch corresponding to the configured
subframe. It may not be the right thing to do.
2017-03-13 15:43:43 +01:00
fnabet
0e78513b5a
RLC AM Tx Segment : missing data_ptr setting
2017-03-13 12:27:09 +01:00
hbilel
cec9cb7662
fix compilation error for dlsim
2017-03-13 12:05:47 +01:00
hbilel
b82b7781ee
integration fix clear tx-buffer of ue in case of empty subframe
...
for all processing including oaisim
2017-03-13 10:14:26 +01:00
Cedric Roux
a194009e00
integration fix: put dlsch_demod_shift into dlsch_demodulation
2017-03-13 10:06:26 +01:00
hbilel
947e50f33d
integration fix optional compilation of avx2
2017-03-13 09:49:56 +01:00
Cedric Roux
fe5fd2494c
Merge remote-tracking branch 'origin/tdd_w10' into develop_integration_w10
2017-03-10 22:27:29 +01:00
Cedric Roux
8e8fec1e19
test setup v2: add TDD tests
...
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.
2017-03-10 20:18:36 +01:00
Florian Kaltenberger
39c7e629fb
bugfix: bundling flag was initialized after its use
2017-03-10 16:20:05 +01:00
Florian Kaltenberger
c135dd611b
scheduling also UL SF 4 in TDD mode 3
2017-03-10 16:19:38 +01:00
Florian Kaltenberger
e14f3677e5
sending full rx signal to T in TDD mode
2017-03-10 16:18:49 +01:00
Rohit Gupta
02f3298a58
several fixes to previous commit. First tests in FDD with USRP and UE ok.
2017-03-10 16:18:40 +01:00
Florian Kaltenberger
a587e35a9d
removal and renaming of LimeSDR configuration files
2017-03-10 15:37:26 +01:00
Florian Kaltenberger
340d05eebf
Merge branch 'calib-LimeSDR' of https://gitlab.eurecom.fr/oai/openairinterface5g into calib-LimeSDR
...
Conflicts:
targets/ARCH/LMSSDR/USERSPACE/LIB/lms_lib.cpp
2017-03-10 15:26:46 +01:00
Florian Kaltenberger
7f24927c43
WIP: SRS configuration of PUSCH and PUCCH. No SRS detection yet. To be tested on HW
2017-03-10 12:42:04 +01:00
Cedric Roux
e6cd9873cd
cleanup test setup README file
2017-03-10 12:19:29 +01:00
fnabet
0ce73b4d0e
RLC AM Rx PDU Segment fixes
2017-03-09 18:08:43 +01:00
gabrielC
8e022654dc
Merge remote-tracking branch 'origin/UE_20MHz_fix' into develop_integration_w10
2017-03-09 16:37:12 +01:00
gabrielC
4abc1d21e3
20 MHz UE fix
2017-03-09 16:33:07 +01:00
fnabet
7f60e38fee
RCL AM: fixes on Tx resegmentation
2017-03-09 16:04:31 +01:00
gabrielC
83b311beac
Merge branch 'remove_printf' into develop_integration_w10
2017-03-09 10:23:11 +01:00
gabrielC
28c009a072
Chenge LOG_I to LOG_D
2017-03-09 10:20:52 +01:00
gabrielC
212dff253f
Merge remote-tracking branch 'origin/mimo_feature_ue_br' into develop_integration_w10
2017-03-09 09:49:42 +01:00
Florian Kaltenberger
19a2337c99
Merge remote-tracking branch 'origin/develop' into calib-LimeSDR
...
Conflicts:
openair1/PHY/MODULATION/ofdm_mod.c
targets/ARCH/LMSSDR/USERSPACE/LIB/lms_lib.cpp
2017-03-09 08:54:34 +01:00
Raymond.Knopp
4342595ea8
calibration (RX) for LimeSDR. Use of new API for RF gains.
2017-03-09 02:43:31 +01:00
GabrielCouturier
7c7172ca18
RLC AM fix bad pointer init in ReSegmentation
2017-03-08 17:16:30 +01:00
hbilel
305ebf5c4b
rebase branch to develop 2017.w09
2017-03-08 14:57:30 +01:00
hbilel
9dd65f2801
[OAI-UE] remove unused debug-printf
2017-03-08 14:21:14 +01:00
hbilel
05fe029a62
[OAI-UE] fix in de-precoding for tm3/4
2017-03-08 13:59:49 +01:00
hbilel
3d1e01e283
[OAI-UE] llr computation clean up
2017-03-08 12:16:38 +01:00
hbilel
bb8c6b2c52
[OAI-UE] code clean up for merge
2017-03-08 12:16:38 +01:00
hbilel
3dc1963a2d
[OAI-UE] MIMO fixes + disabling MIB/SIB decoding on connected mode
2017-03-08 12:16:38 +01:00
Sebastian Wagner
42b834d64c
Changes for 64qam_64qam for avx2
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
2017-03-08 12:16:38 +01:00
hbilel
ba55fcac27
[OAI-UE] Mimo LLR computation AVX2 + fix in TM3 deprecoding
2017-03-08 12:16:38 +01:00
hbilel
ff6d41b6e8
[OAI-UE] Mimo feature
2017-03-08 12:15:02 +01:00
fnabet
b218eea839
Merge tag '2017.w09' into bugfix-189-rlc-am-fixes
2017-03-08 11:52:46 +01:00
gabrielC
ce1ac08b19
RLC AM fix for PDU Segment insertion in case of gaps
2017-03-07 18:33:14 +01:00
gabrielC
b5ab7267c2
RLC AM fix for PDU insertion in case of gaps
2017-03-07 17:51:29 +01:00
GabrielCouturier
fd5932c544
RLC AM Tx: TPollRetx Expiry fix for BO
2017-03-07 16:58:39 +01:00
Rohit Gupta
477a171fbc
adding config file for TDD testing
2017-03-07 16:53:50 +01:00
GabrielCouturier
dc960a6043
RLC AM: missing SN setup in Tx Pdu Management at first Tx
2017-03-07 16:01:35 +01:00
Florian Kaltenberger
b45e9a68a8
adding config file for band 38, TM1, usrp
2017-03-07 15:53:09 +01:00
Cedric Roux
5c375d3ae8
Merge branch 'develop_integration_w09' into 'develop'
...
Develop integration w09
Summary of changes:
- bug fixes
See merge request !128
2017-03-06 15:29:55 +01:00
fnabet
6504013077
RLC AM : fix update of vrMS in tReordering expiry
2017-03-04 15:19:58 +01:00
fnabet
709b1fd299
RLC AM: fix TReordering expiry
2017-03-04 13:40:13 +01:00
Cedric Roux
c1e460183b
Merge remote-tracking branch 'origin/nokia-fixes-w08' into develop_integration_w09
2017-03-03 15:33:20 +01:00
Cedric Roux
05f89b3922
Merge remote-tracking branch 'origin/bug-fix-if-defs' into develop_integration_w09
2017-03-03 15:33:08 +01:00
Cedric Roux
1b1270e847
Merge remote-tracking branch 'origin/feature-59-tm4' into develop_integration_w09
2017-03-03 15:32:54 +01:00
Cedric Roux
f94835becf
bugfix: "if_compress" parameter not taken into account
...
Bug reported by Bruno Mongazon from Nokia.
"Without this line, the config file parameter is not properly stored and
the FH will always work with compression."
2017-03-03 15:25:10 +01:00
Cedric Roux
94229ca593
bugfix: = instead of ==
...
Bug reported by Bruno Mongazon from Nokia.
2017-03-03 15:17:00 +01:00
Elena_Lukashova
b2c57f42fc
Fixing bug in modulation for TM4 64QAM.
2017-03-02 22:40:54 +01:00
fnabet
e1293616d6
Merge tag '2017.w08' into bugfix-189-rlc-am-fixes
2017-03-02 14:53:56 +01:00
fnabet
684ca32e9b
RLC AM Add Log points
2017-03-02 14:51:58 +01:00
fnabet
52006fc6ea
RLC AM : Add Rx PDU Segment handling
2017-03-02 10:37:33 +01:00
Elena_Lukashova
74e2cf77fa
Fixing throughput computations for multiple rounds in TM4.
2017-03-01 16:43:30 +01:00
Elena_Lukashova
7d649f432b
Fixing bler limits for different receivers.
2017-03-01 16:00:56 +01:00
Elena_Lukashova
2e9dfe0fbb
Changing names for bler and abstraction output files
...
in dlsim_tm4 to distinguish from the old runs.
2017-03-01 15:33:55 +01:00
khadraou
0a46cc56a2
fixed PRACH hardcoded size
2017-03-01 10:11:07 +01:00
Elena_Lukashova
25f35fbbb4
fix: remove verbose printfs
2017-02-28 16:18:30 +01:00
Elena_Lukashova
2edbcbdf66
bugfix: fix copy/paste error
...
mcs1 was taken instead of mcs2 in several places.
2017-02-28 16:17:48 +01:00
Elena_Lukashova
3d8fb53073
Merge remote-tracking branch 'origin/develop' into feature-59-tm4
2017-02-28 16:03:47 +01:00
Cedric Roux
5c0f42a277
Merge branch 'develop_integration_w08' into 'develop'
...
Develop integration w08
Summary of changes:
- various bugs fixed
- pre-commit script for better indentation: see commit 068ce4ca55
For the moment, each contributor has to enable the script (and install astyle) by hand.
Maybe at some point the script will be mandatory.
See merge request !124
2017-02-27 12:08:29 +01:00
Elena_Lukashova
b1bf9db8fa
Merge branch 'develop' into feature-59-tm4
2017-02-25 01:39:17 +01:00
Elena_Lukashova
2ef3dd8ff7
Adjusting power level for TM4,5,6.
...
Before that the scaling was aplied in precoder.
Now it is done in sqrt_rho_a and sqrt_rho_b.
For TM4 there still remains 1/sqrt(2) instead of
1/2 both at the transmitter and receievr side.
2017-02-24 23:35:30 +01:00
Elena_Lukashova
b81ee87f4d
Cleaning up for SIC llrs
2017-02-24 23:33:53 +01:00
Elena_Lukashova
bf6a3b522d
Removing dlsch1 from arguments of dlsch_modulation_SIC
2017-02-24 23:30:35 +01:00
Elena_Lukashova
3a7fd01f22
Fixing dump_dlsch2
2017-02-24 23:28:35 +01:00
fnabet
daa308c33a
Merge tag '2017.w07' into bugfix-189-rlc-am-fixes
2017-02-24 17:15:30 +01:00
Cedric Roux
465ab00bc5
Merge remote-tracking branch 'origin/compilation-T-quickfix-w08' into develop_integration_w08
2017-02-24 15:21:06 +01:00
Cedric Roux
fa9b91ad1d
Merge remote-tracking branch 'origin/pre-commit-hook' into develop_integration_w08
2017-02-24 15:18:13 +01:00
Cedric Roux
2c238010a7
Merge remote-tracking branch 'origin/enhancement-212-warning-counts' into develop_integration_w08
2017-02-24 15:17:54 +01:00
fnabet
aac9c6119d
RLC AM fix in Retx PDU segment
2017-02-23 17:44:47 +01:00
Cedric Roux
60b83d84ea
hotfix: pass "%s" to LOG_W to avoid compilation warnings
...
The warning was:
------------------------
In file included from /roux/openairinterface5g/openair2/UTIL/LOG/log.h:306:0,
from /roux/openairinterface5g/openair1/PHY/defs.h:54,
from /roux/openairinterface5g/openair2/LAYER2/MAC/eNB_scheduler_ulsch.c:33:
/roux/openairinterface5g/openair2/UTIL/LOG/log.h: In function 'printMeas':
/roux/openairinterface5g/common/utils/T/T.h:94:26: warning: format not a string literal and no format arguments [-Wformat-security]
#define T_ID(x) ((struct T_header *)(uintptr_t)(x))
^
/roux/openairinterface5g/common/utils/T/T.h:29:22: note: in definition of macro 'T_PUT_int'
int T_PUT_var = (val); \
^
/roux/openairinterface5g/common/utils/T/T.h:269:7: note: in expansion of macro 'T_HEADER'
T_HEADER(t); \
^
/roux/openairinterface5g/common/utils/T/T.h:101:76: note: in expansion of macro 'T3'
n18,n19,n20,n21,n22,n23,n24,n25,n26,n27,n28,n29,n30,n31,n32,n,...) T##n
^
/roux/openairinterface5g/common/utils/T/T.h:102:16: note: in expansion of macro 'TN'
#define T(...) TN(__VA_ARGS__)
^
/roux/openairinterface5g/openair2/UTIL/LOG/log.h:308:28: note: in expansion of macro 'T'
# define LOG_W(c, x...) T(T_LEGACY_ ## c ## _WARNING, T_PRINTF(x))
^
/roux/openairinterface5g/common/utils/T/T_IDs.h:71:30: note: in expansion of macro 'T_ID'
#define T_LEGACY_PHY_WARNING T_ID(68)
^
/roux/openairinterface5g/openair2/UTIL/LOG/log.h:308:30: note: in expansion of macro 'T_LEGACY_PHY_WARNING'
# define LOG_W(c, x...) T(T_LEGACY_ ## c ## _WARNING, T_PRINTF(x))
^
/roux/openairinterface5g/openair2/UTIL/LOG/log.h:411:9: note: in expansion of macro 'LOG_W'
LOG_W(PHY,txt2);
------------------------
over and over.
By replacing LOG_W(PHY,txt2) by LOG_W(PHY,"%s",txt2) all the warnings
are removed.
2017-02-23 11:01:45 +01:00
gabrielC
abfeb4ef06
Fix problem in DCI decoding following dci_handling_br branch integration
2017-02-23 10:49:06 +01:00
gabrielC
c17e81b2aa
Merge remote-tracking branch 'origin/develop_UE_20MHz' into develop_integration_w08
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/dci_tools.c
2017-02-23 09:09:01 +01:00
gabrielC
2f4fcb5ecc
Merge remote-tracking branch 'origin/bugfix214_timingoffset' into develop_integration_w08
2017-02-23 08:56:51 +01:00
gabrielC
dcb48081a0
Merge remote-tracking branch 'origin/dci_handling_br' into develop_integration_w08
2017-02-23 08:54:04 +01:00
fnabet
0030635237
RLC AM Tx buffer: fix sn modulo window size access
2017-02-22 13:00:30 +01:00
hbilel
34ca9a7f93
[OAI-UE] issue#214 fix timing offset compensation
2017-02-22 11:52:01 +01:00
fnabet
b0d468c0f7
RLC AM: add retransmission and Rx status pdu
2017-02-22 11:40:55 +01:00
Florian Kaltenberger
068ce4ca55
adding a client-side pre-commit script. This script needs to be installed by every developer manually. see comments in script.
2017-02-22 09:29:33 +01:00
gabrielC
46b37aaa31
UE 20 MHz fix + remove too restrictive assert
2017-02-21 14:35:00 +01:00
Cedric Roux
e98c3e8143
report warnings to user after compilation
...
Let the user see how many warnings a compilation generates.
The goal is to have 0 warning, for any compiled component
of openair.
2017-02-20 12:54:46 +01:00
Cedric Roux
38771f270b
Merge branch 'develop_integration_w07' into 'develop'
...
Develop integration w07
See merge request !116
Summary of changes:
- integration of branch tm4-fixes (feature-59-tm4 + somes fixes)
- integration of branch enhancement-199-nas-multi-ue
- integration of branch develop-realtime-lts
- integration of branch enhancement-211-snapping
- various bugfixes
2017-02-20 11:52:32 +01:00
Cedric Roux
339353a96c
integration fix: have a central place of definition for clock_difftime_ns
...
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.
2017-02-20 10:53:35 +01:00
Cedric Roux
c8e642494b
integration fix: protect include file
...
The command line to get the error was:
./build_oai --eNB -w EXMIMO -c
2017-02-20 10:10:00 +01:00
Cedric Roux
ea858d54fa
integration fix: strerror has to be used, not perror
...
The command line to get the error was:
./build_oai --eNB -w EXMIMO -c
2017-02-20 10:09:05 +01:00
Cedric Roux
b82e7c1a88
hotfix: forgot targets/COMMON/threads_t.h in a previous commit
2017-02-17 20:19:24 +01:00
Cedric Roux
39f26e945e
Merge remote-tracking branch 'origin/enhancement-211-snapping' into develop_integration_w07
2017-02-17 18:27:33 +01:00
Cedric Roux
e62f569b5d
Merge remote-tracking branch 'origin/various-l2-fixes-187' into develop_integration_w07
2017-02-17 18:23:00 +01:00
Cedric Roux
f9b5dafe29
T: let it compile with C++
...
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
2017-02-17 18:16:22 +01:00
Cedric Roux
603c84c700
fix warnings: fix LOG_X problems when compiling lte-softmodem
...
The compilation line was:
./build_oai --eNB -w USRP
The file openairinterface5g/cmake_targets/log/lte-softmodem.Rel10.txt
has been checked and all LOG_X (and 'msg') warnings have been fixed.
2017-02-17 18:07:06 +01:00
Cedric Roux
96dc12ccce
fix warning: add missing */
2017-02-17 18:07:06 +01:00
Cedric Roux
37bc075cb2
fix: exit if memory_read fails in the function nas_user_initialize
2017-02-17 18:07:06 +01:00
Cedric Roux
74afbf84f4
warning fix: remove pragma in LFDS
...
Not sure that it's correct, but those #pragma seem
to be of no use for gcc. Let's remove them
completely.
2017-02-17 18:07:05 +01:00
Cedric Roux
baeb930397
use ln -sf instead of ln -s in cmake_targets/build_oai
...
When rebuilding oaisim, I had a failure because the target
link already exists. The -f flag forces the link to be done.
2017-02-17 18:01:17 +01:00
Cedric Roux
053704b5c2
remove wrong comment
2017-02-17 18:01:02 +01:00
Cedric Roux
ac7c0df520
integration fix: let oaisim (S1) work again
...
- some cleanup
- thread names to include UE Mod_id
- arg of UE_thread_rxn_txnp4 to be struct rx_tx_thread_data again
- sync in UE_thread_rxn_txnp4 to use instance_cnt_rxtx again
- UE_thread to call itti_send_msg_to_task with UE->Mod_id + NB_eNB_INST
instead of INSTANCE_DEFAULT again
This may break the softmodem UE, to be tested.
The most problematic thing may be the synchronization.
I don't think it will impact the processing at all,
but I won't bet my shirt on it.
2017-02-17 17:55:27 +01:00
Cedric Roux
7c11cf9646
redo commit 5805215227
...
git show -p 5805215227
to see what it's about
2017-02-17 14:39:00 +01:00
Cedric Roux
122953d986
redo commit 157707b042
...
git show 157707b042
to see what it's about
2017-02-17 14:25:26 +01:00
Anta Huang
e3186c1741
Issue #211 - enhance build script for snapping package
...
- 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)
2017-02-17 13:56:00 +01:00
Cedric Roux
f58c7b1be9
integration fix: restore enb.band7.tm1.usrpb210.conf
...
Many variables were changed that should not have been changed.
2017-02-17 12:41:13 +01:00
Cedric Roux
76574a1ac0
Revert "fix nettle"
...
This reverts commit d31634c358 .
Laurent Thomas had a problem on one machine with the build_oai
way of checking for nettle.
The problem with the alternative solution of including nettle/bignum.h
is that it is very unclear.
The problem with nettle is that the file nettle/config.h does not
exist for version 2. It was introduced in version 3.
We want to support both versions, but there is an API incompatibility.
So we need an #if #else mechanism.
The file nettle/bignum.h is present in both versions 2 and 3 and it
includes nettle/version.h in the version 3.
So by including this file, we can check for the existence of
NETTLE_VERSION_MAJOR (that comes from nettle/config.h) in the
code.
But as you can see, the reasoning is way too complex.
So it's better to keep the check in cmake_targets/CMakeLists.txt.
As long as we support version 2 this will be the way to go.
It is possible to force a given version in specific non-generic
customized environments.
2017-02-17 12:29:31 +01:00
Chia-Yu Chang
1b417979e9
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into various-l2-fixes-187
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/if4_tools.c
targets/ARCH/ETHERNET/USERSPACE/LIB/eth_udp.c
targets/ARCH/ETHERNET/USERSPACE/LIB/if_defs.h
targets/PROJECTS/GENERIC-LTE-EPC/CONF/rcc.band7.tm1.if4p5.25PRB.lo.conf
targets/PROJECTS/GENERIC-LTE-EPC/CONF/rcc.band7.tm1.if4p5.50PRB.lo.conf
targets/PROJECTS/GENERIC-LTE-EPC/CONF/rcc.band7.tm1.if4p5.50PRB.usrpb210.conf
targets/PROJECTS/GENERIC-LTE-EPC/CONF/rru.band7.tm1.if4p5.25PRB.oaisim.conf
targets/PROJECTS/GENERIC-LTE-EPC/CONF/rru.band7.tm1.if4p5.50PRB.oaisim.conf
2017-02-17 12:01:26 +01:00
gabrielC
eadcba956e
Merge branch 'develop-realtime-lts' into develop_integration_w07
...
Conflicts:
targets/RT/USER/lte-enb.c
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-ue.c
2017-02-17 11:51:03 +01:00
pyroclaste
3dd1faadd4
Add the compression for IF5 and RTT measurements for FH and RF
2017-02-17 11:38:44 +01:00
Cedric Roux
10a50563eb
Merge remote-tracking branch 'origin/bugfix-exmimo' into develop_integration_w07
2017-02-17 10:08:48 +01:00
Cedric Roux
9a5d17d967
bugfix: do not allocate memory
...
Memory was allocated which was "lost" because the
address of the block was put in a pointer that is
overwritten just after.
Discussing with Elena, the current commit is the correct
way to do things.
2017-02-16 15:37:56 +01:00
Cedric Roux
9535e7a276
bugfix: make some functions thread safe
...
Those functions modify a global char array (a string).
Let's pass a buffer to those functions, so that it's
thread safe. The caller has been modified, with hopefully
a buffer big enough (still bigger than what was there before,
so should not break more than it did).
2017-02-16 15:35:07 +01:00
fnabet
e7e48144e1
Remove RLC header size from UE L2 buffer occupancy
2017-02-16 15:03:26 +01:00
Cedric Roux
31c85b22ea
integration fix: remove ^M from file
...
command run:
dos2unix openair1/SIMULATION/TOOLS/taus.c
2017-02-16 14:35:19 +01:00
Cedric Roux
70c84ef835
integration fix: put correct licensing information
2017-02-16 14:19:04 +01:00
Cedric Roux
ba6d140445
integration fix: put correct licensing information
2017-02-16 14:16:29 +01:00
Cedric Roux
bcfeb7af32
integration fix: put correct licensing information
2017-02-16 14:04:56 +01:00
Cedric Roux
36bd7e1d75
integration fix: remove comment
2017-02-16 14:01:15 +01:00
Cedric Roux
1f3b1ff8ff
integration fix: remove XER_PRINT from RRC
2017-02-16 12:53:25 +01:00
Cedric Roux
f92bd91544
Merge branch 'enhancement-199-nas-multi-ue' into develop_integration_w07
...
Conflicts:
openair1/SCHED/phy_procedures_lte_ue.c
targets/RT/USER/lte-softmodem.c
targets/SIMU/USER/oaisim.c
targets/SIMU/USER/oaisim_functions.c
2017-02-16 12:14:26 +01:00
laurent
be0541aa8c
remove a race
2017-02-16 11:38:38 +01:00
Laurent
6f6f9acb52
merge develop; add option to set affinity in UE
2017-02-16 11:34:02 +01:00
fnabet
fbe109a66c
RLC/MAC UE interface changes for Tx and adapt to eNB
2017-02-16 11:26:37 +01:00
Cedric Roux
6397e66c29
bugfix: fix PCDP inst (again)
...
This commit follows 7d9945e884 .
lte-softmodem UE in S1 and lte-softmodem UE in noS1 modes behave
differently here.
This commit fixes the issue for thoses cases.
Other cases (eNB S1, eNB noS1, oaisim S1/noS1) have to be checked.
2017-02-16 11:23:24 +01:00
Cedric Roux
63c0ed7042
fix UE default configuration file
...
- fix OPc key
- clear EHPLMN_LIST, UE does not start the RA procedure when set
to be fixed
2017-02-16 10:10:42 +01:00
Cedric Roux
7d9945e884
bugfix: fix PDCP inst
...
This commit is a continuation of 614d6bbe2a
(ue_ip: use correct instance).
Now in openair2/NETWORK_DRIVER/UE_IP/common.c the 'inst' is not
forced to 1 anymore, we take the value 'pdcph_p->inst'.
It turns out that 'pdcph_p->inst' is 0 instead of 1 when we
run lte-softmodem as an UE.
So let's modify PDCP to set 'inst' to 1 where it was set to 0 for
the UE softmodem case, and skip the places where it is reset to 0,
still for the UE softmodem case.
This may break things, I am not sure.
2017-02-15 17:21:02 +01:00
Cedric Roux
7b36af0597
bugfix: variable was on the stack
...
Guess what happens when we return from the function...
2017-02-15 15:38:37 +01:00
Florian Kaltenberger
7c4630057f
fixing a wrongly placed } for correct exmimo initialization
2017-02-15 14:28:07 +01:00
hbilel
bfa8a28ccb
[OAI-UE] fix pucch format2 regression
2017-02-14 18:31:57 +01:00
Laurent
23c7547698
remove debug traces
2017-02-14 18:24:31 +01:00
Laurent
d65d91ddcc
gcc warning fix
2017-02-14 18:18:34 +01:00
Cedric Roux
f52a42eda5
cleanup lte-softmodem.c
...
For whatever reason, lte-softmodem.c was totally messed up...
We took the version from the branch develop and added
abstraction_flag, which is needed in openair2/LAYER2/MAC/main.c
(this is not clean, previous commit added a comment for this).
This has to be cleaned at some point.
2017-02-14 16:41:07 +01:00
gabrielC
4ecdfa05f1
UE logging, Replace LOG_I by LOG_D
2017-02-14 16:34:56 +01:00
Cedric Roux
6c789a36bc
minor: add a comment
2017-02-14 16:18:54 +01:00
Cedric Roux
09139ab018
fix build_oai
...
- the option --UE was abused! Let's introduce --UE-conf-nvram and
--UE-gen-nvram
- the option name --UE-OUTPUT was not clear and is now replaced by
--UE-gen-nvram
- the new options are described when running ./build_oai -h
- print_help has been modified (' replaced by ") to print
$conf_nvram_path and $gen_nvram_path
2017-02-14 15:38:51 +01:00
gabrielC
2dc9dc0316
Merge remote-tracking branch 'origin/tm4-fixes' into develop_integration_w07
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/LTE_TRANSPORT/power_control.c
openair2/LAYER2/MAC/eNB_scheduler_dlsch.c
targets/SIMU/USER/oaisim_functions.c
2017-02-14 15:25:37 +01:00
fnabet
1a591da2bc
Merge tag '2017.w06' into bugfix-189-rlc-am-fixes
2017-02-14 15:15:19 +01:00
Cedric Roux
614d6bbe2a
ue_ip: use correct instance
...
The problem was the following.
Run oaisim with two UEs:
sudo ../cmake_targets/oaisim_build_oai/build/oaisim -O enb.conf -u2 -s15 -AAWGN -y1 -b1 -Q0
Then wait for both UEs to be connected. The interfaces "oip1" and "oip2" are
activated, with IP addresses 192.172.0.2 for the first UE and 192.172.0.3 for
the second.
Then on the EPC machine, do:
ping 192.172.0.3
No reply.
On the oaisim machine, we see that the packets are sent to "oip1" instead
of "oip2".
The fix may break softmodem UE. The inst was forced to "1" for some reason.
To be checked.
2017-02-14 10:58:06 +01:00
Cedric Roux
f66f6e49cb
deal with empty subframes at UE side even in oaisim
...
The memset was also too big. It should only clear
one subframe.
Only tested without abstraction.
Abstraction does not work for the moment anyway, but just to
keep that in mind.
2017-02-14 10:27:24 +01:00
gabrielC
9ecae1837c
[OAI-UE] fix ack/nack reporting on pusch
2017-02-13 18:15:07 +01:00
Cedric Roux
b904ce7978
rewrite synchronisation in oaisim/channel simulation
...
The idea is as follows.
oaisim waits for all tasks to be done for a TTI.
To do so it waits for last_rx_timestamp == current_rx_timestamp,
for all UEs and eNBs.
When it's done, it increases current_rx_timestamp by samples_per_tti,
to inform UEs and eNBs that a new TTI is ready.
In the functions [UE|eNB]_trx_read, we wait for a new TTI to be ready,
that is we wait for current_rx_timestamp != last_rx_timestamp.
The UE has also to wait for processing threads to be done.
In the eNB it's not necessary because the processing is all
done in one thread, that is: read subframe, process this subframe,
emit subframe+4, and then back to read subframe.
The code is not clean. We should not use usleep but semaphores.
Also, do_[DL|UL]_sig should not read from rxdata and write to txdata,
but use internal buffers.
The functions [UE|eNB]_trx_read should call do_[DL|UL]_sig and then
copy from the internal buffers of the channel simulator into rxdata.
The functions [UE|eNB]_trx_write should write data passed into the
internal buffers of the channel simulator.
2017-02-13 17:58:11 +01:00
Cedric Roux
14aa96787a
bugfix: eNB_id should have been UE_id
2017-02-13 17:47:47 +01:00
Florian Kaltenberger
aefb958a6f
tx calibration for LimeSDR band 13
2017-02-13 17:12:10 +01:00
hbilel
5805215227
[OAI-UE] fix freq offset correction during cell scan
2017-02-13 16:46:28 +01:00
hbilel
e88d1e739e
[OAI-UE] new pucch procedure to support all formats
2017-02-13 16:15:47 +01:00
Florian Kaltenberger
d930378e13
calibration for new firmware/gateware
2017-02-13 16:05:40 +01:00
Raymond Knopp
cd6ac4529d
addition of TX portion of pucch2a/b
2017-02-13 15:27:53 +01:00
Cedric Roux
6ba07564af
fix: do not modify dlsch[0]->g_pucch
...
This is done in another function.
2017-02-13 15:12:08 +01:00
Cedric Roux
8d7c06b194
cleanup: setting status to ACTIVE is done below
...
Don't do it twice.
The logic is: if ndi changed or it's a first tx then round=0
and later: if round==0 then status=ACTIVE
2017-02-13 15:10:00 +01:00
Cedric Roux
4d8e41100a
fix: check that dlsch[0] is not NULL
...
Note: the dci formats 2, 2A and 1E were not checked,
this has to be done. dlsch[0] and dlsch[1] (when
applicable) must be checked somehow.
2017-02-13 15:08:20 +01:00
Cedric Roux
82403ed1dd
cleanup: comments "Needs to be checked" are not needed
2017-02-13 15:07:06 +01:00
Laurent
fa432bdd26
optim measurement function checkcpu()
2017-02-13 13:58:09 +01:00
Cedric Roux
b2b1dc9f18
Merge branch 'develop_integration_w06' into 'develop'
...
Develop integration w06
See merge request !110
2017-02-13 12:01:13 +01:00
Florian Kaltenberger
442bb79bd0
Merge remote-tracking branch 'origin/develop' into calib-LimeSDR
...
Conflicts:
openair1/PHY/MODULATION/ofdm_mod.c
2017-02-13 11:17:28 +01:00
Cedric Roux
7fd46420d9
minor: fix log (from LOG_D to LOG_I)
2017-02-13 11:16:38 +01:00
Cedric Roux
cd1bd0467c
test setup v2: minor: print commands before execution
2017-02-13 10:30:05 +01:00
Xenofon Foukas
9e55f8ebcd
Fixed bug in the establishment of DRBs
2017-02-11 17:57:11 +02:00
Cedric Roux
0bcee1e40e
fix: set mcs, TBS and Qm only if round == 0
...
Not sure at all about this one, seemed necessary to me,
but I don't get the full logic in there.
To be refined.
2017-02-11 12:34:05 +01:00
Cedric Roux
8f7b6391a5
fix: enough to do it once
...
This is done a bit above in the code, no need to do it twice.
2017-02-11 12:31:45 +01:00
Cedric Roux
c5f400e9d3
fix: do not access array before check
2017-02-11 12:25:46 +01:00
Cedric Roux
fc46dcff36
fix format 1A DCI management
...
I am not sure this is enough. To be refined.
2017-02-11 12:23:05 +01:00
Cedric Roux
80f47817d9
fix: warn if no PDSCH active
...
I doubt the case should happen. If it does, let's print an
error, will ease debugging.
2017-02-11 12:21:05 +01:00
Cedric Roux
a75cfd9073
fix: set default value of nb_rb
...
Not sure if necessary, but better do it.
2017-02-11 12:20:15 +01:00
Cedric Roux
9bf108c227
Revert "Merge remote-tracking branch 'origin/calib-LimeSDR' into develop_integration_w06"
...
This reverts commit ce14050bb4 , reversing
changes made to 0ada1e9e32 .
2017-02-10 17:32:26 +01:00
Laurent
012d333c8e
tune USRP/USB packet size
2017-02-10 17:08:28 +01:00
Cedric Roux
94e039ac87
Merge remote-tracking branch 'origin/fix-if4p5' into develop_integration_w06
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/prach.c
targets/ARCH/ETHERNET/USERSPACE/LIB/ethernet_lib.c
2017-02-10 14:59:39 +01:00
Younes
91e12a9724
Fix if4p5
2017-02-10 14:51:43 +01:00
Cedric Roux
2bf1180884
Merge remote-tracking branch 'origin/feature-68-enb-agent' into develop_integration_w06
...
Conflicts:
openair2/LAYER2/MAC/flexran_agent_scheduler_dlsch_ue.c
2017-02-10 12:22:46 +01:00
Cedric Roux
ce14050bb4
Merge remote-tracking branch 'origin/calib-LimeSDR' into develop_integration_w06
...
Conflicts:
openair1/PHY/MODULATION/ofdm_mod.c
2017-02-10 11:50:31 +01:00
Cedric Roux
0ada1e9e32
Merge remote-tracking branch 'origin/oaisim-rru' into develop_integration_w06
...
Conflicts:
openair2/RRC/LITE/rrc_UE.c
2017-02-10 11:36:06 +01:00
Cedric Roux
ae674104b3
Merge remote-tracking branch 'origin/various-l2-fixes-187' into develop_integration_w06
2017-02-10 11:21:51 +01:00
Laurent
b9e03cf251
fix usrp thread priority
2017-02-09 19:17:28 +01:00
Elena_Lukashova
b31282ae30
Merge branch 'develop' into feature-59-tm4
2017-02-09 18:03:16 +01:00
laurent
3c191c26f3
fix BCH tracking
2017-02-09 17:46:04 +01:00
Cedric Roux
62bcd5edf9
fix: create tasks before sync in oaisim
...
Not sure if this is the right thing to do, but it seems to be.
"start_eNB = 1;" is also necessary when the l2l1 task gets INITIALIZE_MESSAGE
otherwise the eNB does not start.
As it is today, I don't think oaisim will work with more than one eNB.
2017-02-09 11:00:59 +01:00
Cedric Roux
3e77251f96
minor: add a message before aborting
...
The case instance == INSTANCE_DEFAULT should normally not happen,
but let's be a bit verbose if it does.
2017-02-09 10:57:46 +01:00
Cedric Roux
e400b5e709
fix: remove T_ENB_MASTER_TICK in oaisim.c
...
It's now done in lte-enb.c, even for oaisim.
2017-02-09 10:56:42 +01:00
Cedric Roux
234acfea7f
fix: this piece of code should not be here
...
It was probably the result of a bad merge.
At this point eNB_inst is not valid. Plus the T_ENB_MASTER_TICK
is now handled in lte-enb.c, even for oaisim.
2017-02-09 10:53:15 +01:00
Cedric Roux
9c6cb96baf
put UE id in thread names
2017-02-09 10:46:20 +01:00
Cedric Roux
393fe86563
fix: pass UE parameter to UE threads
...
oaisim is not functional with several UEs.
This fixes one issue. (It's still not functional for other reasons.)
2017-02-09 09:47:13 +01:00
Navid Nikaein
80eaec1d5c
fix the protobuf installation under ubuntu 16.04
2017-02-09 09:23:13 +01:00
laurent
51b23b4061
merge latest develop, enhance real time, set back BCH tracing in UE as in develop branch
2017-02-08 21:19:10 +01:00
Cedric Roux
157707b042
fix USE_MME compilation flag
...
We should use ENABLE_USE_MME, not USE_MME.
This code is useless anyway (I think, not sure, that's why I
leave it here), because the other threads wait for 'sync_var'
to become >=0.
2017-02-08 18:06:24 +01:00
Navid Nikaein
5c09741fac
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into various-l2-fixes-187
2017-02-08 14:51:35 +01:00
Navid Nikaein
7e13688e80
fix again the compilation issue with flexran
2017-02-08 14:51:25 +01:00
Navid Nikaein
6b81ddf611
fix the compilation issue with flexran
2017-02-08 14:41:07 +01:00
Florian Kaltenberger
ce465e503a
applying last dlsim fix to dlsim_tm4
2017-02-08 12:03:41 +01:00
Florian Kaltenberger
d3b4251053
yet another bugfix for dlsim
2017-02-08 11:36:48 +01:00
Florian Kaltenberger
b44c49bc30
adjusting power levels in alamouti receiver and dlsim. now TM2 dlsim tests pass again.
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/impl_defs_top.h
2017-02-08 11:10:37 +01:00
Raymond Knopp
4661138d87
protection in case of false DCI
2017-02-07 16:01:27 -08:00
fnabet
d3af6f1f36
Renaming or removing some Tx RLC AM fields
2017-02-07 10:47:47 +01:00
Florian Kaltenberger
e0b8998def
fixing bug in PDSCH power allocation for TM2
...
Conflicts:
openair1/PHY/INIT/lte_init.c
openair1/PHY/LTE_TRANSPORT/dlsch_modulation.c
openair1/PHY/LTE_TRANSPORT/power_control.c
2017-02-07 10:02:49 +01:00
fnabet
39bdc2bce8
fix Tx Status PDU
2017-02-06 16:29:01 +01:00
gabrielC
ab2c1fcc8e
fix TStatus Prohibit 0ms
2017-02-06 14:55:50 +01:00
Elena_Lukashova
0cd250bc50
1. Fixing remaining bugs form merge. Both simulators pass all the test.
...
2. Adding dlsch_encoding_SIC, where the fisrt argument is UE structure.
3. Adding general test cases for dlsim_tm4 simulator. 015110.
2017-02-06 14:55:21 +01:00
Elena_Lukashova
d1d4bb9f0c
Merge branch 'feature-59-tm4' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-59-tm4
2017-02-06 12:00:24 +01:00
Xenofon Foukas
274030c4d5
Merge remote-tracking branch 'origin/develop' into feature-68-enb-agent
2017-02-06 12:29:53 +02:00
fnabet
483822d427
Merge tag '2017.w05' into bugfix-189-rlc-am-fixes
2017-02-06 11:14:40 +01:00
Cedric Roux
e2ae88de23
Merge branch 'develop_integration_w05' into 'develop'
...
Develop integration w05
See merge request !102
2017-02-06 09:43:05 +01:00
Raymond Knopp
bb5ee76ad8
changes in oaisim to support RRU + fronthaul. minor bugs corrected in UE.
2017-02-05 14:31:00 -08:00
Xenofon Foukas
31dde6129c
Fixed various FlexRAN-related compilation warnings
2017-02-05 20:00:57 +02:00
Xenofon Foukas
8250ecd794
Added info required for stability and fairness of remote scheduler
2017-02-05 19:54:14 +02:00
Elena_Lukashova
024af3e730
Merge branch 'feature-59-tm4' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-59-tm4
2017-02-03 22:21:44 +01:00
Xenofon Foukas
0e687fb765
Fixed bug related to the reporting of timing advance to the controller that severely dropped the performance of the remote scheduler
2017-02-03 19:39:47 +02:00
fnabet
79242aaf54
RLC AM Tx changes
2017-02-03 17:02:42 +01:00
Florian Kaltenberger
41a261266a
fixing some bugs
2017-02-03 16:17:52 +01:00
Cedric Roux
39ec1f7071
Merge remote-tracking branch 'origin/fix_T_messages' into develop_integration_w05
2017-02-03 16:02:25 +01:00
Cedric Roux
bebc2a1088
Merge remote-tracking branch 'origin/bugfix-202-oai_nw_drv' into develop_integration_w05
2017-02-03 16:01:47 +01:00
Cedric Roux
b55d80ffd2
Merge remote-tracking branch 'origin/hotfix-201-oaisim-abstraction' into develop_integration_w05
2017-02-03 16:01:30 +01:00
Elena_Lukashova
883310d88d
Adding standard test cases for dlsim_tm4. test case number is 015110.
...
All the test pass.
2017-02-03 12:36:16 +01:00
Florian Kaltenberger
358e6926ca
initializing dlsch_SI and dlsch_RA in dlsim.c
2017-02-02 18:18:16 +01:00
Cedric Roux
d72294b966
fix gen_emm_data
...
It was not setting emm_data->eplmn.plmn[X], only emm_data->eplmn.n_plmns,
leading to the UE to dig for PLMN 00000.
(It's not the end of the story, seems like the PLMN selection
does not work, the UE only tries one from what I've seen, but
I didn't dig much, may be wrong.)
2017-02-02 17:10:59 +01:00
Xenofon Foukas
a3427bf85b
Bug fixes for proper reporting of HARQs to the controller
2017-02-02 17:51:58 +02:00
Cedric Roux
ea6fb5c481
better handle user input in hex_string_to_hex_value
...
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.
2017-02-02 16:35:45 +01:00
Raymond Knopp
d141195ea3
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2017-02-01 23:18:10 -08:00
Raymond Knopp
90cb9d6cb8
adding RRU/Fronthaul functionality to oaisim
2017-02-01 23:17:54 -08:00
gabrielC
7b1cbfc326
Merge branch 'offset_correction' into develop_integration_w05
2017-02-01 15:59:03 +01:00
gabrielC
723510f684
Remove LOG_I
2017-02-01 15:53:52 +01:00
Laurent
094ac2f3ea
merge with head of branch
2017-02-01 15:03:57 +01:00
Laurent
00ebfbb0bc
fix merge compilation
2017-02-01 15:00:01 +01:00
gabrielC
c935da6414
Cell sync Offset was not applied correctly in all case
2017-02-01 14:07:19 +01:00
Laurent
9f33d0904b
merge develop
2017-02-01 13:08:35 +01:00
Cedric Roux
163c37a5a3
bugfix: return error in 'emm_msg_encode' in case of failure
2017-02-01 12:17:39 +01:00
Navid Nikaein
0a91243ca5
merge branch various-l2-fixes with the develop branch
2017-02-01 11:52:53 +01:00
gabrielC
73dded9a21
Merge remote-tracking branch 'origin/issue200_ulharqfix' into develop_integration_w05
2017-02-01 10:34:35 +01:00
gabrielC
e45f26e48e
Fix for ACK not send when DCI0 and DCI1 received at same sfn
2017-02-01 10:26:59 +01:00
Xenofon Foukas
6d6e1c8687
Stability improvements for remote real-time control
2017-01-31 19:15:51 +02:00
gabrielC
03a39ccae2
Merge branch 'UE_S1_compilation' into develop_integration_w05
2017-01-31 14:22:08 +01:00
hbilel
29cc22bd18
[OAI-UE] bugfix issue#204: fix for pss/sss extraction during scan period
2017-01-31 09:53:15 +01:00
gabrielC
0e42ffa2a0
UE compilation for S1
2017-01-31 09:45:24 +01:00
fnabet
5551c5e596
Merge tag '2017.w04' into bugfix-189-rlc-am-fixes
2017-01-30 18:17:14 +01:00
fnabet
66b93704e2
RLC AM fix poll criteria
2017-01-30 18:16:16 +01:00
Cedric Roux
2d8ae33544
T: remove ENB_MAC_UE_UL_PDU_WITH_DATA from group HEAVY
...
we want those traces in the logs people send to us and
the group HEAVY is disabled in the wiki instructions.
2017-01-30 17:25:43 +01:00
Cedric Roux
03bf3a6dc5
put UE T messages above VCD ones
...
looks better
2017-01-30 17:24:44 +01:00
Cedric Roux
bb903e8d4f
add/remove T traces to be up to date with current software
2017-01-30 17:24:08 +01:00
Cedric Roux
452b63fc36
remove oai_nw_drv from test setup
2017-01-30 16:06:25 +01:00
Cedric Roux
dd9778924d
hotfix to be removed: oaisim -a abstraction flag disabled
...
The abstraction mode of oaisim does not work for the moment, it's better
to exit than to crash somewhere randomly.
2017-01-30 15:52:18 +01:00
Elena_Lukashova
90fbbe7ef4
Merge branch 'feature-59-tm4' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-59-tm4
2017-01-30 15:16:09 +01:00
Elena_Lukashova
a51c30f459
Merge branch 'develop' into feature-59-tm4
...
dlsim_tm4 works fine.
dlsim has a bug in llr processing after llr computations (see XFORMS).
2017-01-30 13:37:24 +01:00
Xenofon Foukas
6337bc77b1
Merge remote-tracking branch 'origin/develop' into feature-68-enb-agent
2017-01-30 14:24:14 +02:00
Xenofon Foukas
f1d4f4b93c
Changed behavior of API for PUCCH power reports
2017-01-30 14:23:19 +02:00
hbilel
7b64eae285
[OAI-UE] issue#200 release harq p[rocess after sending Ack
2017-01-30 12:00:08 +01:00
Cedric Roux
4eae34a9d8
Merge branch 'develop_integration_w04' into 'develop'
...
Develop integration w04
See merge request !93
2017-01-30 10:20:34 +01:00
Cedric Roux
61b3de99cb
fix autotest v2
2017-01-30 09:28:35 +01:00
Raymond Knopp
02148c7950
refit for USRP (control of DSP cordic), no more trx_stop during synchronization
2017-01-29 16:15:08 -05:00
Raymond Knopp
afb60b8500
initial LMS7002M register configuration. modifications for lte-ue and rf_device to use LimeSDR.
2017-01-28 17:32:16 -05:00
Xenofon Foukas
9224d36176
Fixed bug that prohibited 2 UEs to be scheduled at the same time
2017-01-27 19:19:17 +02:00
Cedric Roux
dc5f420d88
fix compilation of unitary simulators
...
I'm not sure the fixes are correct.
2017-01-27 18:11:52 +01:00
Cedric Roux
0c13a37517
Merge branch 'timingOffsetLoopBranch' into develop_integration_w04
2017-01-27 16:16:46 +01:00
Cedric Roux
d1ef731728
Merge branch 'bugfix-197-autotest-fixes-2017-w03' into develop_integration_w04
2017-01-27 16:16:14 +01:00
Cedric Roux
11b3e6dfbb
Merge branch 'bugfix-196-oai_nw_drv-compilation' into develop_integration_w04
2017-01-27 16:14:52 +01:00
Cedric Roux
53e416be0b
update license information
...
Also included some source files not related to this branch.
modified: openair1/PHY/LTE_ESTIMATION/lte_dl_bf_channel_estimation.c
modified: openair1/PHY/LTE_TRANSPORT/pilots_ue_spec.c
modified: openair1/PHY/MODULATION/beamforming.c
modified: openair1/PHY/TOOLS/twiddle18432.h
modified: openair1/SIMULATION/LTE_PHY/dlsim_tm7.c
modified: openair3/NAS/TOOLS/nvram.c
modified: openair3/NAS/TOOLS/usim.c
modified: openair3/NAS/UE/user_defs.h
2017-01-27 16:09:56 +01:00
Cedric Roux
106f31524b
update CMakeLists for ubuntu 16.04
...
The previous version did not compile on ubuntu 16.04.
I left the old version, commented, just in case.
2017-01-27 15:58:17 +01:00
Cedric Roux
f6e42ce9e4
fix compilation of oaisim
...
That's not the end of the story though.
2017-01-27 15:52:22 +01:00
Cedric Roux
c62b54a030
remove duplicated definitions
...
I am not sure if it's the right way to solve the
problem, so I keep the definitions here and
put them inside #if 0 #endif
2017-01-27 15:49:45 +01:00
Cedric Roux
1cd46a75d7
add missing #ifndef #endif guards in header file
...
modified: targets/COMMON/openairinterface5g_limits.h
2017-01-27 15:49:00 +01:00
Florian Kaltenberger
b9407c40cf
adding missing file
2017-01-27 15:31:39 +01:00
Anta Huang
471a7d7d10
revert the value of the aggregation
2017-01-27 10:49:04 +01:00
Elena_Lukashova
b98bb25fba
Merge branch 'feature-60-tm4-fork' into feature-59-tm4
...
1. TM4 works on dlsim_tm4.c with full HARQ support for both PIA and SIC.
2017-01-27 10:36:10 +01:00
hbilel
d34a8019b2
[OAI UE] Fix: use double buffer for rxDataF, dlChannelEst and pdsch context
...
since two rx threads (even/odd) are used by OAI-UE
2017-01-27 08:18:02 +01:00
Anta Huang
c84f68cefc
fix the issue with RAN sharing
2017-01-26 18:43:05 +01:00
Elena_Lukashova
e88561e90d
copying dlsim.c to dlsim_tm4.c
2017-01-26 10:51:29 +01:00
Xenofon Foukas
974e5beebc
Harmonized FlexRAN scheduler with MAC changes for support of multiple UEs
2017-01-25 20:02:38 +02:00
Elena_Lukashova
60eddd2c8f
Fixing write_output arguments in dlsim_tm4.c
2017-01-25 17:42:04 +01:00
gabrielC
0dd076a37a
[OAI-UE] fix time tracking and channel interpolation
2017-01-25 17:23:32 +01:00
Elena_Lukashova
a33a3ead22
1.Fixing the bug in lte_ue_measuments.c for rank indicator.
...
2. Fixing the arguments in the dump_dlsch2.
2017-01-25 17:21:56 +01:00
fnabet
26d99fae5d
add changes for Tx Status PDU report
2017-01-25 17:06:37 +01:00
Xenofon Foukas
422c06c932
Merge remote-tracking branch 'origin/develop' into feature-68-enb-agent
2017-01-25 16:18:44 +02:00
Imad ALAWE
d2e02ee2e6
BUGFIX: Ip table clean when oaisim starts
...
Ip table clean use to run on oaisim shutdown. It is moved to run on oaisim starts.
2017-01-25 13:59:47 +01:00
Imad ALAWE
8bff2cff3e
BUGFIX(GTP-U): Add missing ip rules in order to have point to point connection
2017-01-25 13:59:47 +01:00
Imad ALAWE
b3ded7799a
openairinterface5g: Fix multi definition of UE/eNB NB_MAX
...
In openairinterface5g many definitions in many layers of UE or eNB NB_MAX.
We created a file called openairinterface5g_limits.h
located at openairinterface5g_dir/targets/COMMON/ declaring the number max
of UE and eNB to be used in ALL layers depending on launching conditions
(LARGE_SCALE for example).
2017-01-25 13:58:53 +01:00
Imad ALAWE
a731de2f13
openair2: fix abstraction mode for oaisim with MME
...
When using abstraction mode, layer2_init_UE() and openair_rrc_ue_init()
are called according to first_sync state and only without MME support.
We added the global variable abstraction_flag to allow abstraction mode
when MME is enabled.
Openair2 is also used in lte-softmodem, so it must have a global variable
abstraction_flag. So we moved it out from the main() scope.
2017-01-25 13:34:14 +01:00
Frédéric Leroy
3fdcf5b676
feat(conf2uedata): uses nvram and usim binary
...
This commit reverts behaviour of data generation as before
commit 7207c65b05fd812a18371827f2bfb1431fc58696:
fix .ue* filenames in scripts and documentation
TODO add option to conf2uedata and adapt script
2017-01-25 13:29:48 +01:00
Frédéric Leroy
3d0fbc00a1
feat(conf2uedata): reintroduce nvram binary
2017-01-25 13:29:48 +01:00
Frédéric Leroy
30fde6bfe2
feat(conf2uedata): reintroduce usim binary
2017-01-25 13:29:48 +01:00
Frédéric Leroy
e439a24f03
feat(conf2uedata): print USIM filename on display
2017-01-25 13:29:48 +01:00
Frédéric Leroy
d8aa8d4a64
fix(conf2uedata): update INT_ALGO to match openair develop branch
2017-01-25 13:29:48 +01:00
Frédéric Leroy
95503ffd52
fix(conf2uedata): update ue_eurecom_test_sfr.conf to match openair develop branch
2017-01-25 13:29:48 +01:00
Frédéric Leroy
747cea249b
feat(conf2uedata): add a selector for displaying files
2017-01-25 13:29:48 +01:00
Frédéric Leroy
af4027660b
feat(conf2uedata): add a selector for writing files
2017-01-25 13:29:48 +01:00
Frédéric Leroy
6c588589ac
refactor(conf2uedata): move parser functions to conf_parser.[c|h]
2017-01-25 13:29:48 +01:00
Frédéric Leroy
bf699414d1
style(conf2uedata): use bool type for readability
2017-01-25 13:29:48 +01:00
Frédéric Leroy
86c8d0f95a
refactor(conf2uedata): move plmns functions to conf_user_plmn.[c|h]
2017-01-25 13:29:48 +01:00
Frédéric Leroy
51c7753526
refactor(conf2uedata): move networks function to conf_networks.[c|h]
2017-01-25 13:29:48 +01:00
Frédéric Leroy
1b54e18a47
refactor(conf2uedata): add networks_t for managing known_networks
2017-01-25 13:29:48 +01:00
Frédéric Leroy
8d36213f6f
refactor(conf2uedata): add make_plmn_from_conf()
2017-01-25 13:29:48 +01:00
Frédéric Leroy
459a6ec372
refactor(conf2uedata): use user_plmns struct to store plmns lists
...
This remove the old static lists
2017-01-25 13:29:48 +01:00
Frédéric Leroy
c86b437eb3
refactor(conf2uedata): make plmns_list struct for managing plmns
2017-01-25 13:29:48 +01:00
Frédéric Leroy
fcb857e508
refactor(conf2uedata): add parse_Xplmn() to read *plmns
2017-01-25 13:29:48 +01:00
Frédéric Leroy
5c8410c56f
fix(conf2uedata): make hplmn_index a local variable
...
There was a side effect corrupting data because hplmn_index was not computed.
2017-01-25 13:29:48 +01:00
Frédéric Leroy
7fe8d45d6a
refactor(conf2uedata): move usim_data funcions in conf_usim.[c|h]
2017-01-25 13:29:48 +01:00
Frédéric Leroy
f03e2dbc0e
refactor(conf2uedata): move user_data function in conf_user_data[c|h]
2017-01-25 13:29:48 +01:00
Frédéric Leroy
eeb44860e9
refactor(conf2uedata): move emm_data funcions in conf_emm.[c|h]
2017-01-25 13:29:48 +01:00
Frédéric Leroy
ef2dee59d4
refactor(conf2uedata): separate processing and writing of data
2017-01-25 13:29:48 +01:00
Frédéric Leroy
8461a56aa1
refactor(conf2uedata): add fs.[h|c] and display.[c|h]
2017-01-25 13:29:48 +01:00
Frédéric Leroy
8ae72d1cf1
refactor(conf2uedata): put display out of build
2017-01-25 13:29:48 +01:00
Frédéric Leroy
e2dc453b62
fix(conf2uedata): fix missing extern in header
2017-01-25 13:29:48 +01:00
Frédéric Leroy
292535fe06
refactor(conf2uedata.c): rewrite main() and add parse_config_file()
2017-01-25 13:29:48 +01:00
Frédéric Leroy
804595d483
style(conf2uedata.c): rewrite main() for readability
2017-01-25 13:29:48 +01:00
Frédéric Leroy
33b2d11fc2
fix(conf2uedata): clarify error message when config file does not exists
2017-01-25 13:29:48 +01:00
Frédéric Leroy
fe2193ba75
fix .ue* filenames in scripts and documentation
...
TODO add option to conf2uedata and adapt script
2017-01-25 13:29:48 +01:00
Imad ALAWE
17d155325a
feat: add conf2uedata tool for generating .*.nvram
...
This patch adds the conf2uedata tool for generating .ue.nvram* .ue.emm.nvram*
and .usim.nvram* files from a textual configuration file.
The configuration file define most usefull values like plmns, mnc, mcc, msin, K,
OPc for several users.
The files generated will always ends with a number corresponding to the user
entry in the configuration file.
This breaks oai5g because other script have not be updated for using
conf2uedata.
This breaks also the at_nas_ue command.
Examples of configuration files are in openair3/NAS/TOOLS/
2017-01-25 13:29:48 +01:00
Frédéric Leroy
c4707bd8b7
UE: fix nvram_data load filename
2017-01-25 13:29:10 +01:00
Frédéric Leroy
b43c6cbfdd
nas_ue_task: add support for multiple UE
2017-01-25 13:29:10 +01:00
Frédéric Leroy
8bc36c3b96
UE/EMM: move emm_nvram filename to nas_user_t
2017-01-25 13:29:10 +01:00
Frédéric Leroy
260e696c8b
UE: move nvram data filename to nas_user_t
2017-01-25 13:29:10 +01:00
Frédéric Leroy
5fc045644c
UE/USIM/API: fix interface for storing usim_data
2017-01-25 13:29:10 +01:00
Frédéric Leroy
45fccb0203
UE/API/USIM: move hex functions to common/utils.c
2017-01-25 13:29:10 +01:00
Frédéric Leroy
9af3599153
UE: add nas_user_api_id_initialize() function
2017-01-25 13:29:10 +01:00
Frédéric Leroy
e36aee0b7f
UE: factorize calloc() calls and exit on failure
2017-01-25 13:29:10 +01:00
Frédéric Leroy
dcf35b2af1
UE/EMM: fix emm_proc_lowerlayer_* prototype
2017-01-25 13:27:43 +01:00
Frédéric Leroy
5367d5dc3f
UE/EMM: move _lowerlayer_data to nas_user_t
2017-01-25 13:27:43 +01:00
Frédéric Leroy
1ca4d551b8
UE: review and annotate code with FIXME
2017-01-25 13:27:43 +01:00
Frédéric Leroy
8d34217ce4
UE: add user instance to itti messages
2017-01-25 13:27:43 +01:00
Frédéric Leroy
556d5a65e9
UE/*: exit on error
2017-01-25 13:24:30 +01:00
Frédéric Leroy
fcf2444ee1
UE/EMM: remove redondant ueid in prototypes
2017-01-25 13:24:30 +01:00
Frédéric Leroy
64e296ed67
UE/API/USER: remove fd from nas_user_t
2017-01-25 13:24:30 +01:00
Frédéric Leroy
38d7adc7e3
UE/*: fix ueid = 0
2017-01-25 13:24:30 +01:00
Frédéric Leroy
c7a36ec6d2
UE/EMM/LowerLayer: move ueid to nas_user_t
2017-01-25 13:24:30 +01:00
Frédéric Leroy
e6daacf7ea
UE/API/USER: move _user_api_*_buffer to user_api_id_t
2017-01-25 13:24:30 +01:00
Frédéric Leroy
a99e1a95af
API/USER: move _user_api_id to nas_user_t
2017-01-25 13:24:30 +01:00
Frédéric Leroy
53fa94785a
UE/EMM: remove extern definitions for timers
2017-01-25 13:24:30 +01:00
Frédéric Leroy
5ab2fccf2f
UE/API/USER: rename _user_data to user_at_commands_t and move it to nas_user_t
2017-01-25 13:23:18 +01:00
Frédéric Leroy
26538bb9e2
UE/API/USIM: move OP to usim_keys_t
2017-01-25 13:23:18 +01:00
Frédéric Leroy
5b90bcbd25
UE/EMM/SAP: fix misuse of extern for emm_proc_plmn_selection_end() and emm_proc_status()
2017-01-25 13:21:50 +01:00
Frédéric Leroy
b33b4df006
UE/API: rename _usim_api_data to usim_sqn_data and move it to usim_data
2017-01-25 13:21:50 +01:00
Frédéric Leroy
ec889250a5
UE/API: remove old Makefiles
2017-01-25 13:20:21 +01:00
Frédéric Leroy
c875b44958
UE/API/USIM: move _usim_api_k to usim_keys_t
2017-01-25 13:19:39 +01:00
Frédéric Leroy
60032f57b4
UE/EMM: move _emm_attach_data to emm_data_t
2017-01-25 13:12:43 +01:00
Frédéric Leroy
289f1ea971
UE/EMM: move _emm_detach_data to emm_data_t
2017-01-25 13:12:43 +01:00
Frédéric Leroy
46438c7cd9
UE/ESM: move _default_eps_bearer_context_data to nas_user_t
2017-01-25 13:12:20 +01:00
Frédéric Leroy
404c346182
UE: rename _nas_user_data to at_response and move it to nas_user_t
2017-01-25 13:12:20 +01:00
Frédéric Leroy
607f0ca377
UE: remove _nas_user_context from comments
2017-01-25 13:12:20 +01:00
Frédéric Leroy
83e1dc9ed0
UE: move _nas_user_nvdata to nas_user_t
2017-01-25 13:12:20 +01:00
Frédéric Leroy
9a33bca200
UE: move _nas_user_context to nas_user_t
2017-01-25 13:12:20 +01:00
Frédéric Leroy
ef05c1d900
UE/EMM: move static T34XX timers to emm_data_t
2017-01-25 13:12:20 +01:00
Frédéric Leroy
491f299bf2
UE/EMM: move _security_data to nas_user_t
2017-01-25 13:12:20 +01:00
Frédéric Leroy
5899af2efd
UE/EMM: move _authentication_data to nas_user_t
2017-01-25 13:12:20 +01:00
Frédéric Leroy
576bbd252c
UE/EMM: move _usim_data to nas_user_t
2017-01-25 13:12:20 +01:00
Frédéric Leroy
7340b5e071
UE/EMM: move _plmn_list to nas_user_t
2017-01-25 13:11:30 +01:00
Frédéric Leroy
2d7f557ae9
UE/EMM: fix buggy condition in IdleMode.c
2017-01-25 13:10:39 +01:00
Frédéric Leroy
5665b05c7c
UE/EMM: move _emm_data to nas_user_t
2017-01-25 13:08:58 +01:00
Frédéric Leroy
809be889a7
UE/ESM: move _esm_ebr_data to nas_user_t
2017-01-25 13:08:19 +01:00
Frédéric Leroy
f99e5e1ff0
UE/ESM: remove useless #if directive in esm_ebr.c
2017-01-25 13:08:19 +01:00
Frédéric Leroy
84fa851dfa
UE/ESM: use static buffer per UE to allow reentrancy in esm_sap.c
2017-01-25 13:08:19 +01:00
Frédéric Leroy
7ff4939da6
UE/EMM/SAP: move _emm_fsm_status to nas_user_t
2017-01-25 13:08:19 +01:00
Frédéric Leroy
73937668f0
UE/ESM: move _esm_pt_data to nas_user_t
2017-01-25 13:08:19 +01:00
Frédéric Leroy
e6b5e1c34d
UE: fix at_nas_ue compilation
2017-01-25 13:08:19 +01:00
Frédéric Leroy
844a8af418
UE/ESM: move _esm_data to nas_user_t
2017-01-25 13:08:19 +01:00
Frédéric Leroy
55364a8860
UE/ESM: fix esm_pt_start_timer callback
2017-01-25 13:08:19 +01:00
Frédéric Leroy
223247ceb0
UE/EMM: add nas_user_t parameter to emm_sap_send
...
Surprisingly, it touches every part of openair3, and most of the prototype.
Moreover, a special attention have been put to callback review.
However, there are still places to fix or review indicated by FIXME
2017-01-25 13:08:19 +01:00
Frédéric Leroy
4742178aee
UE/ESM: Make _esm_data a pointer instance
...
This patch adds esm_data_t parameter to ESM functions.
This fixes a bug where the old _esm_data was redefined in all .o
Signed-off-by: Frédéric Leroy <frederic.leroy@b-com.com >
2017-01-25 13:06:35 +01:00
Frédéric Leroy
d4de8aaf0f
UE: use nas_user_t in nas_* function prototype
...
This patch merely adds a "user" object in all nas_* functions.
This don't move any data structure.
It allows next patches to be nicely split.
Signed-off-by: Frédéric Leroy <frederic.leroy@b-com.com >
2017-01-25 13:06:35 +01:00
Frédéric Leroy
ee82aed182
UE: move _nas_proc_data to nas_user_t struct
2017-01-25 13:06:35 +01:00
Frédéric Leroy
2ee6ae11df
UE: create a user and move user_fd into the nas_user_t struct
2017-01-25 13:06:13 +01:00
Frédéric Leroy
7c8dbbdb25
UE: introduce the nas_user_t type in user_defs.h
2017-01-25 13:06:13 +01:00
Frédéric Leroy
2d8cf88884
openair2/RRC/LITE: remove fixed ue_mod_id = 0
2017-01-25 13:06:13 +01:00
Frédéric Leroy
b4cbddb970
UE: move nas_ue_task.h from openair2 to openair3/NAS/UE
2017-01-25 13:06:13 +01:00
Frédéric Leroy
3835f10659
UE/ESM: move esm_indication_callback_t from openair2 to esm_ebr.h
2017-01-25 13:06:13 +01:00
Frédéric Leroy
3df061b540
UE/EMM: move emm_indication_callback_t from openair2 to emm_main.h
2017-01-25 13:06:13 +01:00
gabrielC
7a2984e8ae
[OAI-UE] TimingOffset tracking faster loop
2017-01-25 10:57:20 +01:00
Xenofon Foukas
d0476cb02b
Fixed various bugs related to scheduling using agent
2017-01-24 17:39:44 +02:00
Cedric Roux
68ff688b71
autotest v2: source oaienv in execution.bash
2017-01-24 10:03:50 +01:00
Cedric Roux
7aa57b4d84
remove compilation of oai_nw_drv
...
The compilation of this module does not seem to be necessary,
as far as I have checked. Plus it fails when you run
"build_oai --oaisim --noS1", so let's not compile it.
2017-01-23 13:56:10 +01:00
Cedric Roux
2045a49313
Merge branch 'develop_integration_w03' into 'develop'
...
Develop integration w03
See merge request !89
2017-01-23 10:55:32 +01:00
Cedric Roux
101d28e9da
integration fix: fix compilation of ulsim
...
Hopefully the right argument is passed to this function.
2017-01-23 10:32:39 +01:00
Florian Kaltenberger
e84a00174b
choosing the right version of the unresolved merge conflict in beamforming.c
...
changed the memory allocation of txdataF and beam_weigths
2017-01-21 16:20:10 +01:00
Cedric Roux
37a18b2530
integration fix: bad #if #endif position
2017-01-20 17:22:43 +01:00
Cedric Roux
af67618095
Merge branch 'bugfix-188-multi-UEs-fixes' into develop_integration_w03
2017-01-20 17:05:00 +01:00
Cedric Roux
69c8b8a933
Merge branch 'feature-68-enb-agent' into develop_integration_w03
2017-01-20 16:59:16 +01:00
Cedric Roux
74d07a70f6
Merge branch 'enhancement-192-beamforming' into develop_integration_w03
...
Conflicts:
openair1/PHY/INIT/lte_init.c
openair1/PHY/MODULATION/beamforming.c
openair1/PHY/defs.h
targets/RT/USER/lte-enb.c
2017-01-20 16:58:29 +01:00
Cedric Roux
e6f3c9b899
Merge branch 'enhancement-10-harmony' into develop_integration_w03
...
Conflicts:
targets/RT/USER/lte-enb.c
targets/RT/USER/lte-softmodem.c
2017-01-20 16:49:39 +01:00
Cedric Roux
da0cbaf86c
fix: add /usr/include/lime to include directories
...
when testing on haswell, using apt-get to install LimeSDR
libraries and includes, it put it in /usr/include, not
/usr/local/include
2017-01-20 16:38:26 +01:00
Cedric Roux
f7fb0280a0
Merge branch 'develop-new-LMSSDR' into develop_integration_w03
2017-01-20 16:37:44 +01:00
Cedric Roux
a0f19a7265
add some printf for debug purpose (to be remove at some point)
...
this commit is here to help debug the previous ones.
It has to be reverted at some point.
2017-01-20 15:48:49 +01:00
Cedric Roux
a6219153d9
check (to be reworked at some point)
...
We put an abort() at this point in the code, because
if the previous commit is correct, the program will
never comme here.
2017-01-20 15:47:08 +01:00
Cedric Roux
da75a07870
rewrite sort_UE for UL and DL and adapt the rest to the change
...
The previous version did not seem to work properly with
several UEs. I too often ended up with a list 'next' where
next[i] = i, leading to an infinite loop, crashing the
processing.
The sorting functions were hard to understand and too slow
anyway (O(n*n)).
We now use qsort_r and comparison functions, that should
define the same order as the previous version.
One important point is that the "next" lists and the "head"
variable are now considered invalid before calling sort_UE.
So all the code (coming before sort_UE) that looped using those
variables has been rewritten to loop over all possible UEs and
the first instruction of the loop is to exit the loop if the UE
is not 'active'. There is room for improvement here. We will
reintroduce a list of some kind at some point. Let's first
have something that works and then optimize. Today NUMBER_OF_UE_MAX
is 16, that's not a big deal.
Consequently, the add_new_ue and rrc_mac_remove_ue have also
been rewritten, hopefully for the better.
This commit is not a basic work and may introduce some
problems.
2017-01-20 15:36:58 +01:00
Cedric Roux
c824eea074
better (maybe) freeing of RA process when an UE is removed from MAC
...
The RA process may be in the state:
RA_active == FALSE and wait_ack_Msg4 == 1
Testing only the rnti should be enough, if everything else works
properly.
Also, don't break, just in case. (Not sure it makes a
difference.)
2017-01-20 15:21:37 +01:00
Cedric Roux
c3c2b774d6
bugfix: do not get pCC_id if UE_id is invalid
2017-01-20 15:15:58 +01:00
Cedric Roux
0d3fa21187
add a LOG in RA
2017-01-20 15:11:40 +01:00
Cedric Roux
428c2212aa
fix: better creation of RNTI
...
The previous version was calling taus(), which
may return any value in [0..65535].
The new version restricts it to [1024..59999]
(arbitrary values, big enough, and in the valid range).
It also checks that the new RNTI is not already present
in the MAC.
I think we should also check that it's not used by a RA
process.
The "loop" thing may not be the best solution either.
To be refined.
2017-01-20 15:09:05 +01:00
Cedric Roux
c1fee62473
RA: fix allocation of RA process
...
A RA process is not available if
and RA_template[i].wait_ack_Msg4 != 0
We can have RA_active==FALSE and wait_ack_Msg4==1,
in which case the RA process is in use and cannot
be reassigned.
2017-01-20 15:05:28 +01:00
Cedric Roux
a5d5a21ddb
"fix" handling of UE_id in RA.
...
What if it's -1? Is it possible?
We catch the case and abort.
We may do a proper fix if the case happen.
I don't think it will, but who knows...
2017-01-20 15:01:51 +01:00
Cedric Roux
89445da9eb
attempting at fixing RRC
...
RRC does not work very well when one UE goes away and comes
back in some situations.
This commit is an attempt at making things work better.
It is probably not the end of the story.
2017-01-20 14:59:24 +01:00
Cedric Roux
c33afccb1b
bugfix: logging was done after modification of values
...
It resulted in wrong log message, leading to complicated
debugging.
2017-01-20 14:57:28 +01:00
Cedric Roux
2a1d1134e9
log an error if UE is -1 in rrc_mac_config_req
2017-01-20 14:54:19 +01:00
Raymond.Knopp
56241235cf
rcc configuration file band 7 if5.
2017-01-20 08:44:41 +01:00
Cedric Roux
2c578f350a
remove XER printing in asn1_msg.c, too verbose
2017-01-19 17:23:15 +01:00
Cedric Roux
390085c377
remove printing of UE capabilities on stdout
...
Modern UEs have very long UE capabilities.
It disrupts realtime behaviour of the modem.
Let's put a simple log message indicating we got the
UE capabilities.
2017-01-19 12:47:50 +01:00
Navid Nikaein
27a1101a58
add support for RAN/radio resource slicing through flexran
2017-01-19 12:44:20 +01:00
fnabet
b77694e89c
main AM RX process PDU changes
2017-01-19 11:40:03 +01:00
Cedric Roux
5933f21882
hack to avoid zombie UEs in the MAC layer
...
Here is the problem:
Sometimes the UE has no PHY context but
is still present in the MAC with 'ul_failure_timer' = 0 and
'ul_out_of_sync' = 0. It seems wrong and the UE stays there forever. Let's
start an UL out of sync procedure in this case.
The root cause of this problem has to be found and corrected.
In the meantime, this hack...
This has to be redone at some point.
2017-01-19 10:00:19 +01:00
Cedric Roux
38b387794e
hack in RLC AM to avoid a race
...
Here is the problem:
UE comes. SRB2 is configured via message to RRC.
At some point the RLC AM is created but not configured yet.
At this moment (I think) MAC calls mac_rlc_status_ind
which calls this function. But the init was not finished yet
and we have a crash below when testing mem_block != NULL.
The "solution" is to test if rlc->input_sdus is NULL.
This is a very dirty hack. I would say the solution
is to use proper locking mechanism because RLC is used
by two threads: PHY/MAC on one hand and RRC on another
hand (I think).
2017-01-19 09:57:43 +01:00
Cedric Roux
05d02c43ec
remove annoying logging (dump_CCE_table)
2017-01-19 09:49:39 +01:00
Florian Kaltenberger
e0c7479122
and one more fix
2017-01-19 09:32:29 +01:00
Florian Kaltenberger
0695828e4c
some fixes
2017-01-18 16:43:02 +01:00
Florian Kaltenberger
b0b5cb21e5
Beamforming is now only done when necessary. This patch is based on one from enhancement-10-harmony.
2017-01-18 15:31:04 +01:00
Raymond.Knopp
1224cf44ae
switch RX to HIGH band input by default
2017-01-18 14:14:07 +01:00
Tien-Thinh Nguyen
dce5191542
update to make harmony work with Mobipass[Ercom]
2017-01-18 13:53:05 +01:00
Raymond.Knopp
773afc1490
TX power calibration, RX_W by default
2017-01-18 13:21:07 +01:00
Raymond.Knopp
12cc35932a
Merge branch 'develop' into develop-new-LMSSDR
...
Conflicts:
targets/RT/USER/lte-softmodem.c
2017-01-18 10:44:37 +01:00
Cedric Roux
adbc609bbf
bugfix: reset DCI count before adding one
...
The management of uplink failure generates a DCI to send
a RA PDCCH order. It calls add_ue_spec_dci which increases
DCI_pdu[CC_id]->Num_ue_spec_dci, but this was reset to 0
*after* the DCI generation. Let's reset *before*.
Bug reported by Liang Yong on openair5g-user mailing list.
2017-01-18 10:33:52 +01:00
Florian Kaltenberger
550759231d
change loop limit to NB_ANTENNA_PORTS_ENB
2017-01-18 09:38:14 +01:00
Florian Kaltenberger
a5e6690ded
adding multadd_cpx_vector
2017-01-18 09:33:39 +01:00
Xiwen JIANG
ab57b0ddd3
replace the conjugate vector multiplexing with direct vector multiplexing
2017-01-18 09:16:13 +01:00
Florian Kaltenberger
8a9ef14e4f
reduced the max number of antenna ports to 6 to save memory (we are not using antenna port >5 anyway)
...
mult_cpx_conj_vector can now also do multiply add
beam_precoding now uses mult_cpx_conj_vector
Conflicts:
openair1/PHY/MODULATION/beamforming.c
2017-01-18 09:15:57 +01:00
Navid Nikaein
fdbab0e856
fix the aggregation format for dump_CCE_table
2017-01-16 18:31:45 +01:00
Cedric Roux
67e53e72ab
fix the use of get_eNB_UE_stats
...
The function may return NULL if the UE has been dropped
in the PHY layer but is still present in the MAC layer.
Deal with the NULL case everywhere it's needed.
2017-01-16 17:07:47 +01:00
Xenofon Foukas
84b61f2264
Merge remote-tracking branch 'origin/develop' into feature-68-enb-agent
2017-01-16 17:47:17 +02:00
Xenofon Foukas
9fc584d173
Fixed FlexRAN-related warnings
2017-01-16 17:45:58 +02:00
Xenofon Foukas
dc8190dc6a
Fixed issue with #pragma warnings in liblfds
2017-01-16 17:44:43 +02:00
Tien-Thinh Nguyen
73920f3f6e
[minor modification] fixed the issue related to TX with FDD
2017-01-16 16:08:40 +01:00
Cedric Roux
dec41a2a99
Merge branch 'develop_integration_w02' into 'develop'
...
Develop integration w02
See merge request !82
2017-01-16 10:20:01 +01:00
Cedric Roux
0af4c17000
fix phy simulators compilation - for real
...
This is the real fix, d5a6817887
was not the right solution.
2017-01-16 09:52:14 +01:00
Navid Nikaein
97db12c9f2
better setting of aggregation level as a function of cqi and bw
2017-01-15 20:28:07 +01:00
Raymond Knopp
8be18c360b
debugging for RRU if4p5 TDD
2017-01-15 08:58:26 +01:00
Raymond Knopp
2da964bb2d
changes for RRU TDD if4p5
2017-01-15 01:07:30 +01:00
Raymond.Knopp
84c61990b7
fix for S-subframe handling (if4p5_asynch_DL)
2017-01-14 16:23:13 +01:00
Raymond Knopp
4c78c177db
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
openair1/SCHED/phy_procedures_lte_eNb.c
targets/RT/USER/lte-enb.c
2017-01-14 22:54:12 +01:00
Raymond Knopp
6fd41105c9
RRU changes for S-Subframe
2017-01-14 22:40:36 +01:00
Raymond.Knopp
9ee29fb0b2
changes for S-subframe support in fronthaul
2017-01-14 14:35:19 +01:00
Raymond Knopp
0f47f01cae
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2017-01-13 19:52:48 +01:00
Raymond Knopp
848f78465b
addition of IF4p5 ULTICK packet for TDD fronthaul
2017-01-13 19:49:22 +01:00
Cedric Roux
ff11cf5f23
Merge branch 'bugfix-183-LOG_X-format' into develop_integration_w02
2017-01-13 17:16:16 +01:00
Cedric Roux
fe2446b7e3
Merge branch 'bugfix-185-simulator-compilation' into develop_integration_w02
2017-01-13 17:14:23 +01:00
Cedric Roux
c6a2cf042a
Merge branch 'bugfix-186-rrh-gw-compilation' into develop_integration_w02
2017-01-13 17:12:57 +01:00
Cedric Roux
c88ec0bd81
Merge branch 'bugfix-184' into develop_integration_w02
2017-01-13 17:09:24 +01:00
Cedric Roux
31cbb18f0e
Merge branch '180-fix_TDDConfigurationFileParseRrror' into develop_integration_w02
2017-01-13 17:07:13 +01:00
Cedric Roux
490492cbfa
Merge branch '182-MistakeLogicalOperatorsAndBitwiseOperators' into develop_integration_w02
2017-01-13 17:04:18 +01:00
Cedric Roux
7edff5fe0b
Merge branch 'bugfix-181-oaisim' into develop_integration_w02
2017-01-13 17:02:42 +01:00
Cedric Roux
adfaa6d9f3
Merge branch 'develop-new-LMSSDR' into develop_integration_w02
...
Conflicts:
targets/RT/USER/lte-softmodem.c
2017-01-13 17:01:30 +01:00
Raymond.Knopp
90015dfb35
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2017-01-13 14:17:42 +01:00
Raymond.Knopp
5715de89f2
changes for TDD fronthaul
2017-01-13 14:17:26 +01:00
Cedric Roux
ab7a3e8e9c
fix compilation of RRH GW
...
I am not sure this is the correct solution.
The problem seems to be that the RRH GW does not use ITTI
and thus the type 'as_nas_info_t' is not defined, and then
the compilation fails.
The simple fix is to include 'as_message.h' in
'openair2/RRC/LITE/defs.h' if ENABLE_ITTI is not
defined. Maybe it's not good. RRH GW compiles with this fix.
2017-01-12 17:58:28 +01:00
Cedric Roux
d5a6817887
fixing mbmssim and pdcchsim compilation
...
"frame" is not defined, we pass 0 instead.
Maybe not the right solution.
2017-01-12 17:32:54 +01:00
Florian Kaltenberger
ccdb80efbc
initializing N_TA_offset for TDD eNB. Fixes issue 184.
2017-01-12 10:57:35 +01:00
calvin wang
801a2e5de7
fix mistake bitwise operators
2017-01-12 16:47:57 +08:00
Cedric Roux
669aa1fbcf
fix duplicated definition of boolean_t
...
It is defined both in openair2/COMMON/commonDef.h and
openair2/COMMON/platform_types.h.
Removing one or the other definition creates many problems
when compiling this or that part of the system (ue_ip.ko,
at_nas_ue). Let's keep both and protect the definitions
inside #ifdefs.
2017-01-12 09:27:22 +01:00
Cedric Roux
237da58846
fix a warning in openair3/NAS/UE/EMM/IdleMode.c
...
I'm not sure this is the right fix, so I put a LOG_TRACE
that is displayed when the code comes here.
2017-01-12 09:26:51 +01:00
Laurent
396d59ff22
merge last develop
2017-01-11 23:07:22 +01:00
Raymond.Knopp
c70e705aa4
lmssdr configuration file
2017-01-11 16:10:27 +01:00
Cedric Roux
89cff54730
remove '#define OPENAIR_LTE' from openair1/PHY/defs.h
2017-01-11 16:00:36 +01:00
Cedric Roux
00b7568ed2
warning fix: remove duplicate typedef for 'instance_t'
...
I chose to remove it from common/utils/itti/itti_types.h,
maybe it's not the correct solution.
2017-01-11 15:57:52 +01:00
Cedric Roux
9df4a4910d
fix warnings in openair1/PHY/MODULATION/compute_bf_weights.c
...
Several various fixes are included. Not sure what component of
the system uses this file.
There is one 'abort' added in case a fscanf fails. It may be a
bit too brutal.
2017-01-11 15:56:20 +01:00
Cedric Roux
d36e4e4c85
fix minor warning
2017-01-11 15:55:55 +01:00
Cedric Roux
a36ccb97a2
remove 'variable may be used uninitialized' warning
...
This is not absolutely necessary (the processing is ok),
but the warning is annoying.
2017-01-11 15:54:54 +01:00
Cedric Roux
22942608fa
fix 'unused variables' warning
2017-01-11 15:53:41 +01:00
Cedric Roux
f45256c66b
fix LOG_X macros - addendum
...
I forgot one file in the previous commit
2017-01-11 15:50:58 +01:00
Cedric Roux
f2f32f5340
fix LOG_X macros
...
Some of them might not be correctly handled.
I put /* TODO: XXX */ where I didn't know if
the fix was correct.
2017-01-11 15:48:00 +01:00
calvin wang
3ec3d2a6b1
fix mistake logical and bitwise operators
2017-01-11 14:56:56 +08:00
Cedric Roux
f3b84e7495
include init_nas_s1 in the repository
...
init_nas_s1 may not work properly, but many people complain
about this file, so let's put it in the repository.
We'll fix it at some point if it's not properly usable.
2017-01-10 16:52:52 +01:00
Cedric Roux
cb67d586a4
add format indicator to get LOG_X warnings
...
The LOG_X macros emit a lot of warnings when compiling with the T
because they call the function logRecord (or logRecord_mt)
which has not been "marked" as calling printf, so gcc won't
emit typical printf warnings.
With the T, they directly translate to sprintf, so those warnings
pop up, much more verbose due to several macro expansions.
Let's make them pop up all the time so it's easier to fix them.
2017-01-10 14:21:02 +01:00
Cedric Roux
8d3368b79d
Merge branch 'develop_integration_wk01' into 'develop'
...
Develop integration wk01
See merge request !74
2017-01-09 22:54:12 +01:00
Cedric Roux
bfecb5e54a
T: add PHY throughput view to enb tracer
2017-01-09 17:08:30 +01:00
Rohit Gupta
9162c069d1
test setup v2: fix bad throughput for bandirch dongle
...
The throughput for the bandrich dongle was limited to 13Mb/s in downlink
UDP with iperf, with lots of packets lost (we sent 15Mb/s). TCP was
working fine.
Replacing /dev/ttyUSB2 by /dev/ttyUSB0 for wvdial solves the issue.
We also had to have separate data/control links. (See bandrich.txt
in cmake_targets/autotests/v2/actions for full details.)
2017-01-09 16:49:16 +01:00
gabrielC
78efb33243
Log clean up
2017-01-09 16:42:01 +01:00
Cedric Roux
f16fe1423e
integration bugfix: phich_subframe2_pusch_subframe is wrong
...
calling the function for FDD case executed code for TDD case.
2017-01-09 10:11:36 +01:00
calvin wang
637e2f0793
fix TDD config file parse error and add TDD band40 config file
2017-01-09 11:20:13 +08:00
Raymond.Knopp
2a6274338d
Merge remote-tracking branch 'origin/various-fixes-2016-w50' into develop-new-LMSSDR
2017-01-07 14:55:42 +01:00
Raymond.Knopp
c1360397ed
CMakeList.txt changes for LMSSDR, lmssdr config file 50 PRB, rx gain setting in lms_lib.cpp
2017-01-07 14:55:04 +01:00
Raymond.Knopp
6e9a28b1a7
Merge remote-tracking branch 'origin/develop' into develop-new-LMSSDR
...
Conflicts:
targets/RT/USER/lte-softmodem.c
2017-01-07 13:06:23 +01:00
Raymond.Knopp
5575fed27b
some warning removal.
2017-01-07 12:55:48 +01:00
Raymond.Knopp
14d28e2dbd
fixes for precoding (turning off if nb_antennas_tx=1), configuration files, timing advance with 3/4 sampling on 20 MHz, logging in MAC
2017-01-07 12:41:36 +01:00
laurent
d31634c358
fix nettle
2017-01-07 08:23:50 +01:00
Raymond.Knopp
de8ab34d85
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2017-01-06 20:29:44 +01:00
Raymond Knopp
0e919b9913
configuration file band7 rru
2017-01-07 04:28:06 +01:00
Raymond.Knopp
328731af18
band7 rcc configuration
2017-01-06 20:26:42 +01:00
Cedric Roux
40add2d572
Merge remote-tracking branch 'origin/various-fixes-2016-w50' into develop_integration_wk01
2017-01-06 18:03:32 +01:00
Cedric Roux
4f235bb83e
test-setup: minor bugfix
2017-01-06 18:00:44 +01:00
Cedric Roux
1f95f48f41
first version of v2 test setup
...
The old one is still usable by replacing .gitlab-ci.yml with
the previous version.
2017-01-06 17:48:35 +01:00
Cedric Roux
3f4a993e9f
fix compilation order of lapack
...
As reported on the mailing list, there was a problem
for some users. The link phase of building the simulators
was giving the error "undefined reference to ATL_scopy".
2017-01-06 11:54:49 +01:00
Cedric Roux
b29f6bc7e5
Merge branch 'bugfix-178' into develop_integration_wk01
...
Conflicts, manually resolved.
Conflicts:
openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_dar.c
2017-01-06 11:16:02 +01:00
Cedric Roux
e05bf365be
Merge branch 'bugfix-177' into develop_integration_wk01
...
Smoe conflicts, manually resolved.
Conflicts:
openair1/SCHED/phy_procedures_lte_ue.c
2017-01-06 11:12:06 +01:00
Cedric Roux
217eba6b6e
Merge branch 'bugfix-176' into develop_integration_wk01
...
There were some conflicts, manually resolved.
Conflicts:
openair1/PHY/LTE_TRANSPORT/dci_tools.c
openair1/SCHED/phy_procedures_lte_ue.c
2017-01-06 11:04:39 +01:00
Cedric Roux
de665ee4e3
Merge branch 'exmimo2_firmware' into develop_integration_wk01
2017-01-06 10:54:37 +01:00
Cedric Roux
ce9b316da2
Merge branch 'bugfix-164' into develop_integration_wk01
2017-01-06 10:52:35 +01:00
Cedric Roux
02ecf9fd45
Merge branch 'bugfix-156' into develop_integration_wk01
2017-01-06 10:47:18 +01:00
Cedric Roux
6bba411e1b
Merge branch '148-bugfix-Expressmimo2-driver' into develop_integration_wk01
2017-01-06 10:45:18 +01:00
Wilson W.K. Thong
4bdd700a38
skip the RLC PDU if its header is found invalid
...
see issue #178
2017-01-06 14:21:44 +08:00
Wilson W.K. Thong
4fe2d6d724
fix noise power calculation and downlink CQI reporting
...
see issue #177
2017-01-06 12:08:51 +08:00
Wilson W.K. Thong
2e7c28a591
fix incorrect PUCCH format causing no SR received by eNB in TDD
...
fix incorrect fss_pusch calculation
fix the incorrrect HARQ-PID checking
remove incorrect checking on downlink DCI HARQ PID value
fix incorrect downlink ACK/NACK feedback procedures in TDD
fix no activating PDSCH decoding when DL-DCI is indicating a downlink retransmission
see issue #176
2017-01-06 12:01:05 +08:00
Raymond.Knopp
23fc8fdb26
patch for ulsch_decoding.c to fix alignment issue on demultiplexing
2017-01-05 08:22:29 +01:00
Raymond.Knopp
a190005316
fixes for SRB2 in MAC/RRC.
2017-01-05 08:19:28 +01:00
Raymond.Knopp
28d16f4a91
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
openair1/SCHED/phy_procedures_lte_eNb.c
2017-01-05 01:48:52 +01:00
Raymond Knopp
e66338669e
changes for RRU (merge with develop). single-thread-disable flag is functional for RRU.
2017-01-05 09:47:14 +01:00
Raymond Knopp
e466b2c1bc
patch for lte-ue.c on trx_read which allows oaisim to work. rxdata -> UE->common_vars.rxdata
2017-01-04 14:26:58 -05:00
Raymond Knopp
219016e7a4
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
openair1/PHY/INIT/lte_init.c
targets/RT/USER/lte-enb.c
targets/RT/USER/lte-softmodem.c
targets/SIMU/USER/init_lte.c
2017-01-04 07:18:52 +01:00
Florian Kaltenberger
8effdc36a7
adding latest EXMIMO2 firmware (from end 2015) to this repository
2017-01-03 15:18:28 +01:00
LTS
59d0cf1c54
fix T macro calls
2017-01-03 14:26:17 +01:00
Raymond Knopp
1d331c0bf8
Changes for 20 MHz RRU (dual-thread mode)
2017-01-03 07:46:36 +01:00
Raymond.Knopp
93a244cfaf
debugging for 20 MHz RRU
2017-01-02 23:39:35 +01:00
laurent
2612df9ef2
after tests
2016-12-29 10:09:13 +01:00
Raymond.Knopp
2507933c82
bugfix in rrc_eNB_s1AP.c. ue_context_p is used before checking if pointer is non-null.
2016-12-28 11:43:33 +01:00
Raymond.Knopp
975342399d
bugfix for DCCH2/SRB2 in eNB_scheduler_dlsch.c, demultiplexing SIMD alignment issue in ulsch_decoding.c, IF5 fronthaul modification in lte-enb.c
2016-12-27 21:31:11 +01:00
laurent
3b44919d0b
better performance measurements
2016-12-27 15:48:56 +01:00
laurent
cedde4ad1f
realtime for UE
2016-12-26 21:19:26 +01:00
Raymond.Knopp
db4b77ebd2
Merge remote-tracking branch 'origin/develop' into enhancement-10-harmony
...
Conflicts:
targets/RT/USER/lte-softmodem.c
2016-12-22 23:17:37 +01:00
Raymond.Knopp
12ed6c21f1
minor changes in lte-enb.c and rcc configuration files
2016-12-22 23:16:31 +01:00
hbilel
6f9ba77bd8
Merge branch 'T-tracer-branch' into develop_integration_wk01
...
Conflicts:
openair1/SCHED/phy_procedures_lte_ue.c
2016-12-22 11:36:23 +01:00
hbilel
759f5f751f
[OAI-UE] 1- ignore bad dci
...
2- reset dataTx buff correctly
3- pucch/pusch power control fix
2016-12-22 11:18:29 +01:00
hbilel
a1f25f073c
[OAI-UE] T-tracer for UE, more traces
2016-12-22 11:09:57 +01:00
Cedric Roux
f24068c2a4
remove annoying and misleading error message
...
People are complaining on the mailing list about this.
It's not an error to receive a retransmission.
2016-12-22 10:08:51 +01:00
Wilson W.K. Thong
6b79dc9ac3
fixing crash due to de-qeueueing the same PDCP SDU twice by two different threads
...
see issue #164
2016-12-21 17:20:14 +08:00
Wilson W.K. Thong
dfc537ff3d
add logs and asserts to catch the double dequeue of the same head PDCP SDU from pdcp_sdu_fifo during flushing
...
see issue #164
2016-12-21 17:20:14 +08:00
Wilson W.K. Thong
a513f8bc39
hotfix logs on multi-threading
2016-12-21 17:20:14 +08:00
Wilson W.K. Thong
dabdf7933b
add more logs to debug memory leak problem
2016-12-21 17:20:14 +08:00
Wilson W.K. Thong
afeb256604
add more VCD logs to debug thread timing issue
...
see issue #166
2016-12-21 16:55:46 +08:00
Wilson W.K. Thong
8673fa8415
hotfix VCD log dump for thread timing debugging
...
see issue #165
2016-12-21 16:28:50 +08:00
Wilson W.K. Thong
3dabb5447a
fixing thread busy crash: disabled timing consuming NAS logs
...
see issue #165
2016-12-21 16:28:50 +08:00
Wilson W.K. Thong
210cbd60ef
fixing thread busy crash: add more error checking to catch timing issues
...
see issue #165
2016-12-21 16:28:50 +08:00
hbilel
8d2bb6cbc2
[OAI-UE] fix pusch/pucch power control part 1
2016-12-20 11:44:18 +01:00
hbilel
127f1a9438
[OAI-UE] UE T-tracer updates part 3
2016-12-20 11:26:59 +01:00
hbilel
619d34d781
[OAI-UE] UE T-tracer updates part 2
2016-12-19 18:05:59 +01:00
hbilel
d9255b5c72
[OAI-UE] T-tracer UE updates
2016-12-19 17:42:09 +01:00
hbilel
378020ce97
adapt oai-ue to t tracer part 2
2016-12-19 17:34:59 +01:00
hbilel
15a1af31db
[OAI-UE] adapt T-tracer to support OAI-UE
2016-12-19 17:34:27 +01:00
Cedric Roux
3bf8768d1b
Merge branch 'develop_integration_w50' into 'develop'
...
Develop integration w50
See merge request !61
2016-12-19 15:03:07 +01:00
Cedric Roux
5ebdbf9f2d
integration fix: align32 missing (NOT DEFINITIVE!)
...
We have a crash:
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7fff7387d700 (LWP 1944)]
ulsch_decoding (eNB=eNB@entry=0x7fffaf73b010, proc=proc@entry=0x7fffaf73b480,
UE_id=UE_id@entry=0 '\000',
control_only_flag=control_only_flag@entry=0 '\000',
Nbundled=<optimised out>, llr8_flag=<optimised out>)
at /roux/merge/openairinterface5g/openair1/PHY/LTE_TRANSPORT/ulsch_decoding.c:1450
1450 *((__m256i *)&ulsch_harq->e[iprime]) = *((__m256i *)&y[j2]);
This commit reduces the apparition of the crash, but does not
eliminate it completely.
To be fixed after integration.
2016-12-19 12:25:35 +01:00
Cedric Roux
66c292b95b
integration fix: update T messages
2016-12-19 11:19:05 +01:00
Cedric Roux
2a62db97e6
Merge remote-tracking branch 'origin/develop' into develop_integration_w50
2016-12-16 22:47:18 +01:00
Florian Kaltenberger
a525be94c3
changing antenna number back to 1
2016-12-15 17:25:15 +01:00
gabrielC
f79dd53edf
Merge remote-tracking branch 'origin/feature-21-TM7-tmp' into develop_integration_w50
2016-12-15 11:39:04 +01:00
Wilson W.K. Thong
d11a22aa8d
added more logs for debugging false DCI0
2016-12-15 17:26:35 +08:00
Wilson W.K. Thong
fce9f0b5d5
avoid detecting DCI0 at subframes where no DCI0s are sent by eNB. This happens only in TDD mode
...
issue !156
2016-12-15 16:57:21 +08:00
gabrielC
089eb06a59
Merge branch '147-phy-test-mode-error-msg-dl-received-harqretx-round-1' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop_integration_w50
...
correct issue 147 : --phy-test mode : error msg " DL Received HarqReTx round=1 m
2016-12-14 15:56:37 +01:00
Benoit ROBERT
abfc21ad28
Merge branch '147-phy-test-mode-error-msg-dl-received-harqretx-round-1' of https://gitlab.eurecom.fr/oai/openairinterface5g into 147-phy-test-mode-error-msg-dl-received-harqretx-round-1
2016-12-14 15:53:48 +01:00
ROBERT Benoit
17d62a6777
correct issue 147 : --phy-test mode : error msg " DL Received HarqReTx round=1 mcs=28 rballoc=8191 rv=0 "
2016-12-14 15:53:26 +01:00
gabrielC
2164f7cd03
Merge branch '146-phy-test-mode-udate-fill_dci' into develop_integration_w50
...
Problem in DCI NDI : the implementation use 5 HARQ processes, but process 0 N…
2016-12-14 15:50:18 +01:00
Benoit ROBERT
4622ba134f
Merge branch '146-phy-test-mode-udate-fill_dci' of https://gitlab.eurecom.fr/oai/openairinterface5g into 146-phy-test-mode-udate-fill_dci
2016-12-14 15:32:23 +01:00
ROBERT Benoit
82437cccb7
- Problem in DCI NDI : the implementation use 5 HARQ processes, but process 0 NDI never toggled because it was reused on subframe 5 that is not carrying format 1 DCI. Fix -> use 8 harq processes instead of 5.
...
- SI scheduled on every subframe 5 (even and odd frames) instead of only on even frames
- Add DLSCH scheduling on subframe 5 for odd frames
- change default rballoc from 0x7FFF to 0x1FFFF to support maximum 10MHz throughput
2016-12-14 15:29:33 +01:00
gabrielC
9044dc3535
Merge remote-tracking branch 'origin/issue-154-PDCP_FIFO_NETLINK' into develop_integration_w50
...
PDCP fix
2016-12-14 14:46:00 +01:00
Benoit ROBERT
2f3483d1d3
correct issue 154 on PDCP fifo for noS1 mode
2016-12-14 12:26:01 +01:00
gabrielC
1167dd6b33
ue autotest merge part2
2016-12-14 10:16:54 +01:00
gabrielC
9fa556ffbf
Merge branch 'Enhancement-142-OAI_UE_autotest_framework' into develop_integration_w50
2016-12-14 10:05:19 +01:00
gabrielC
af68b3974b
Merge branch 'Enhancement-142-OAI_UE_autotest_framework', tag '2016.w49' of https://gitlab.eurecom.fr/oai/openairinterface5g into Enhancement-142-OAI_UE_autotest_framework
2016-12-14 10:02:32 +01:00
hbilel
ca078ff549
fix compilation error
2016-12-13 17:38:43 +01:00
hbilel
7a92f587e5
Merge branch 'ue-tdd_fix_issueOai1B_45' into develop_integration_w50
2016-12-13 12:51:05 +01:00
hbilel
595db57af0
Merge branch 'ue-tdd_fix_issueOai1B_44' into develop_integration_w50
...
Conflicts:
targets/RT/USER/lte-ue.c
2016-12-13 12:50:47 +01:00
hbilel
1b07582ce4
Merge branch 'ue-tdd_fix_issueOai1B_43' into develop_integration_w50
2016-12-13 12:49:41 +01:00
hbilel
e227a12736
Merge remote-tracking branch 'oai1B/bugfix-42' into ue-tdd_fix_issueOai1B_42
2016-12-13 12:41:10 +01:00
hbilel
495e357a1e
Merge branch 'develop1B' of https://gitlab.eurecom.fr/oai1B/openairinterface5g into enhancement-45
...
Conflicts:
openair2/LAYER2/MAC/ue_procedures.c
2016-12-13 12:31:45 +01:00
hbilel
35ae311ac8
Merge branch 'develop1B' of https://gitlab.eurecom.fr/oai1B/openairinterface5g into bugfix-44
2016-12-13 12:27:41 +01:00
hbilel
be28fd3352
Merge branch 'develop1B' of https://gitlab.eurecom.fr/oai1B/openairinterface5g into bugfix-43
...
Conflicts:
targets/RT/USER/lte-softmodem.c
2016-12-13 12:26:37 +01:00
Chia-Yu Chang
01c50449c3
fix the AVX2 compilation directive
2016-12-12 18:43:37 +01:00
Chia-Yu Chang
7f4c961d82
add T messages for FLEXRAN and fix a complication error in FLEXRAN
2016-12-12 18:41:26 +01:00
Cedric Roux
8f6746beae
Merge branch 'develop1B_integration_w49' into 'develop'
...
Develop1 b integration w49
See merge request !56
2016-12-12 16:02:21 +01:00
hbilel
17aefade3f
remove temporary harq process for ue (ul)
2016-12-12 12:48:48 +01:00
hbilel
e0bf855fbf
initialize max retans tx Mlimit
2016-12-12 12:12:27 +01:00
hbilel
e04e8a62cc
remove mac-struct usage from phy
2016-12-12 11:45:22 +01:00
Cedric Roux
5976ea4a95
hotfix: attempt for a better gitlab CI setup
...
Not sure it's the right thing to do, but this commit
should reduce fake builds.
2016-12-12 09:22:50 +01:00
Cedric Roux
a574c3d31b
integration fix: wrong license
2016-12-12 09:22:01 +01:00
Cedric Roux
0a9d013f59
integration fix: LOG_I/LOG_D do not exist when compiling at_nas_ue
...
Use LOG_TRACE instead.
2016-12-09 17:47:49 +01:00
Cedric Roux
8db3583b09
integration fix: add usim_test to at_nas
2016-12-09 17:47:29 +01:00
ROBERT Benoit
3750ebc2d6
Update UE autotest testsuite for OAI1B develop1B_integration_w49 branch
2016-12-09 16:13:06 +01:00
ROBERT Benoit
d31b6ef83b
Merge remote-tracking branch 'origin/develop' into Enhancement-142-OAI_UE_autotest_framework
2016-12-09 16:06:17 +01:00
Cedric Roux
46b2ee9577
integration fix: attempt to clarify ODD_PARITY
...
This may need to be refined.
The variable ODD_PARITY is defined at various places,
with different values, causing compilation warnings.
It's wrong to define a variable with different values.
A new variable is created, specific to IMEI case: IMEI_ODD_PARITY.
Maybe ODD_PARITY should also have 0xf as value, and so maybe only
one variable is necessary. To be checked at some point...
2016-12-08 17:51:02 +01:00
Cedric Roux
752ceb1922
integration fix: remove compilation warnings
2016-12-08 17:49:56 +01:00
Cedric Roux
497e89d97e
integration fix: bugfix: wrong enum used
2016-12-08 17:48:56 +01:00
Cedric Roux
e4a84606b9
integration fix: send SRS configuration to UE only if SRS active
...
Manually testing with the Samsung Galaxy Note 4 failed,
probably because the phone didn't like to receive SRS
configuration.
Let's send it only if activated.
2016-12-08 17:09:39 +01:00
Cedric Roux
179ff73658
integration fix: use old CMakeLists.txt
...
Another way to set those two variables has to be used for the
specific UE case (use a sub CMakeLists.txt, see in build_oai).
2016-12-08 16:47:30 +01:00
gabrielC
bd30471076
[OAI-UE] merge com4Innov branch to integration branch
2016-12-08 11:07:38 +01:00
ROBERT Benoit
18c3a32321
correct issue #148 - protect whatchdog thread mutex unlock
2016-12-07 12:17:55 +01:00
Florian Kaltenberger
e470e2d3bd
Merge remote-tracking branch 'origin/develop' into feature-21-TM7-tmp
...
Conflicts:
targets/RT/USER/lte-enb.c
2016-12-07 09:40:20 +01:00
Wilson W.K. Thong
e6671827bb
clean up changes for submission
2016-12-07 14:42:26 +08:00
Wilson W.K. Thong
05a261ae66
further clean up changes for change submission
2016-12-07 14:35:50 +08:00
Wilson W.K. Thong
55e50b2052
enhanced wireshark logging. also logs BCH, PRACH and RAR. Tested with wireshark 2.2.2 on linux and windows
...
see issue #45
2016-12-07 10:45:44 +08:00
Wilson W.K. Thong
4041a661fc
fixed incorrect wiresahrk SFN/SF for UL/DL data
2016-12-07 10:43:47 +08:00
Wilson W.K. Thong
488b84cb46
fixing thread busy crash: disabled timing consuming NAS logs
...
see issue #44
2016-12-07 10:39:57 +08:00
Wilson W.K. Thong
53777043c3
fixed PRACH TA default value in TDD mode
...
see issue #43
2016-12-07 10:30:55 +08:00
Wilson W.K. Thong
6c6d20b622
added logging to debug PRACH
2016-12-06 21:11:14 +08:00
gabrielC
0fb34b2e28
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop1B
2016-12-06 12:05:25 +01:00
Fabrice Nabet
3a3a699bc5
Merge branch 'BSR_fixes_fabrice' into 'develop1B'
...
Bsr fixes fabrice
Merge feature BSR stabilization to develop1B
See merge request !15
2016-12-06 11:28:59 +01:00
Cedric Roux
bf5bf8ba04
Merge branch 'feature-68-enb-agent' into 'develop'
...
Feature 68 enb agent
See merge request !47
2016-12-06 09:52:42 +01:00
Raymond.Knopp
7e4e63ae64
Merge remote-tracking branch 'origin/develop' into enhancement-10-harmony
...
Conflicts:
targets/RT/USER/lte-enb.c
targets/RT/USER/lte-softmodem.c
2016-12-06 07:24:03 +01:00
Wilson W.K. Thong
086520f50e
clean up changes for change submission
...
issue #42
2016-12-06 11:15:58 +08:00
Wilson W.K. Thong
675e0b10cb
fixing thread busy crash: fixed incorrect processing of special-subframe
...
TX as a normal TX
2016-12-06 10:34:08 +08:00
Wilson W.K. Thong
8daa6897e9
fixing thread busy crash: add more error checking to catch timing issues
2016-12-06 10:34:08 +08:00
Wilson W.K. Thong
4a0e4b5e14
fixing thread busy crash: add more VCD logs to debug timing issues
2016-12-06 10:34:07 +08:00
Wilson W.K. Thong
81daba1931
Revert "enabled extra logs"
...
This reverts commit 5466562b16d70f2729f6103e1c0d3ee619470191.
2016-12-06 10:28:11 +08:00
Wilson W.K. Thong
e1b9533200
enabled extra logs
2016-12-06 10:28:10 +08:00
Wilson W.K. Thong
ae253f45b2
added more logs to debug missing SI-RNTI DCIs
2016-12-06 10:28:10 +08:00
Wilson W.K. Thong
726a543abf
fixed missing a slot_fep() processing on the 1st OFDM symbol of the first DL subframe after UL, causing no SI-RNTI DCI detected
2016-12-06 10:28:10 +08:00
Xenofon Foukas
8def47c488
Changed old licenses in FlexRAN agent source files
2016-12-05 22:04:12 +02:00
Xenofon Foukas
a2acf0a98f
Merge remote-tracking branch 'origin/develop' into feature-68-enb-agent
2016-12-05 21:40:10 +02:00
Cedric Roux
9a0f32aa1d
T: add 'throughputlog' logger
...
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.
2016-12-05 17:58:16 +01:00
Xiwen JIANG
41582eb340
fix compliation problems for unitary tests
2016-12-05 17:56:58 +01:00
Cedric Roux
2270dae1e7
T: new view 'scolltti'
...
This view is used to display throughput (to come in next commits).
2016-12-05 17:49:03 +01:00
Cedric Roux
5b6a83fc7f
T: some work on XY plot
...
- 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).
2016-12-05 17:37:22 +01:00
Cedric Roux
bff8e40d00
T: add widget 'textarea'
...
It's like a label but with fixed dimensions and maximum
characters' capacity at creation time.
2016-12-05 17:30:13 +01:00
fnabet
bc032392c9
add workarounds for OAI issues
2016-12-05 16:51:27 +01:00
ROBERT Benoit
f52a2c9583
correct issue 147 : --phy-test mode : error msg " DL Received HarqReTx round=1 mcs=28 rballoc=8191 rv=0 "
2016-12-05 15:41:47 +01:00
Cedric Roux
031a72de7d
T: new function 'bps'
...
This function is used to print rates (say '1kb/s' or '16Mb/s').
2016-12-05 15:08:27 +01:00
Cedric Roux
d7831c1f57
T: add TBS to ENB_PHY_DLSCH_UE_DCI
2016-12-05 14:52:12 +01:00
Raymond.Knopp
108cf6bff0
renaming of RCC configuration files
2016-12-04 12:20:12 +01:00
Raymond Knopp
b0766d7074
added prach buffer for if4p5 processing in RRU. This fixed a critical bug which was seen for bandwidths greater than 5 MHz. RRU tested with 5/10 MHz on 1.5 GHz Atom.
2016-12-04 20:17:33 +01:00
Raymond Knopp
54057dce28
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-12-04 20:13:31 +01:00
Raymond Knopp
7be5af4c09
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-12-04 17:50:14 +01:00
Raymond Knopp
76ee52a635
small changes for rru debugging
2016-12-04 17:49:25 +01:00
Raymond.Knopp
0717c18ccb
modifications for PRACH on IF4p5
2016-12-04 12:11:03 +01:00
Raymond.Knopp
1255cf856f
Merge remote-tracking branch 'origin/develop' into enhancement-10-harmony
...
Conflicts:
targets/ARCH/ETHERNET/USERSPACE/LIB/ethernet_lib.c
targets/RT/USER/lte-enb.c
targets/RT/USER/lte-softmodem.c
2016-12-04 09:46:02 +01:00
Rohit Gupta
a78ef7c932
minor fixes for 0257+ test cases
2016-12-02 14:56:21 +01:00
ROBERT Benoit
62e235ac3e
Merge remote-tracking branch 'origin/develop' into 146-phy-test-mode-udate-fill_dci
2016-12-02 11:54:26 +01:00
Raymond.Knopp
0b254522c9
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-12-02 09:57:56 +01:00
Raymond.Knopp
eb82608878
dos2unix on eth_udp.c
2016-12-02 09:57:20 +01:00
Rohit gupta
0640959560
minor fixes for 0257* test cases
2016-12-02 07:54:02 +01:00
Raymond Knopp
688fe7bcf8
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-12-02 07:36:27 +01:00
Raymond Knopp
cfc308dd4c
new IF5 configuration file for RRU
2016-12-02 07:35:34 +01:00
Rohit Gupta
05c635311d
fix for 0157 test cases
2016-12-02 07:20:43 +01:00
Raymond.Knopp
8aa61a1d29
new IF5 configuration file
2016-12-01 23:32:07 +01:00
Rohit Gupta
7c9a3311e7
minor fixes to OAI UE/OAI EPC test cases
2016-12-01 22:24:04 +01:00
Raymond.Knopp
490b695b3d
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-12-01 21:36:48 +01:00
Raymond Knopp
8678be1692
fixed IF5 timing
2016-12-02 05:36:23 +01:00
Raymond.Knopp
2774702108
IF5 timing for RCC
2016-12-01 21:36:33 +01:00
Rohit Gupta
f4b93cdc12
[Gitlab CI] Add OAI UE to autotests
2016-12-01 19:37:48 +01:00
ROBERT Benoit
f22e56ee6d
- Problem in DCI NDI : the implementation use 5 HARQ processes, but process 0 NDI never toggled because it was reused on subframe 5 that is not carrying format 1 DCI. Fix -> use 8 harq processes instead of 5.
...
- SI scheduled on every subframe 5 (even and odd frames) instead of only on even frames
- Add DLSCH scheduling on subframe 5 for odd frames
- change default rballoc from 0x7FFF to 0x1FFFF to support maximum 10MHz throughput
2016-12-01 16:31:05 +01:00
Cedric Roux
ce1e9cb15a
T: bugfix: bad order of parameters in function declaration
2016-12-01 13:16:49 +01:00
Cedric Roux
53ccc0e7ad
T: minor bugfix - bad argument type in log
2016-12-01 13:15:34 +01:00
Cedric Roux
cae34e0f4d
T: minor fix - wrong comments
2016-12-01 11:08:13 +01:00
Cedric Roux
f89c70dfc3
T: change range of DL/UL MCS plots
...
[-1 29] was not very pleasant for MCS 28 or no DCI (value is -1 in this case).
[-2 30] looks better.
2016-11-30 18:03:49 +01:00
Cedric Roux
cbc2164e50
T: bugfix: vertical tick was off by 1 pixel
...
The problem was visible when DL MCS was set to 20
(do a ping -c 192.172.0.1 -i0.2 to get it). The dots
were not plotted at the exact line of the tick mark.
Not sure the fix is always correct.
No big deal anyway.
2016-11-30 18:01:17 +01:00
Cedric Roux
1e485b4b5e
T: add DL and UL MCS plots in enb.c
...
Helps visualize MCS usage over time.
2016-11-30 16:39:49 +01:00
Cedric Roux
a016cb7589
T: new logger ticked_ttilog
...
A new logger is there: the "ticked TTI logger".
Similar to TTI logger (used by the PUCCH1 energy plot)
but takes another input, the "tick" (think subframe)
and a default value for when no event is triggered between
two ticks.
This is used for the UL and DL MCS plots in enb.c (next commit).
2016-11-30 16:32:29 +01:00
Cedric Roux
7adc4703be
T: update traces
...
- add mcs to ENB_PHY_DLSCH_UE_DCI
- add mcs, round, first_rb, nb_rb, TBS to ENB_PHY_ULSCH_UE_DCI
2016-11-30 16:29:14 +01:00
Florian Kaltenberger
e1c4e78b69
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-11-29 17:21:18 +01:00
Florian Kaltenberger
31541601ce
fixes for tdd (N_TA_offset was not initialized) + some other code cleanup
...
tested with both EXMIMO and USRP. performance better than in master branch.
2016-11-29 17:19:14 +01:00
hbilel
ea7c0e1b36
reduce BSR logging
2016-11-29 15:26:57 +01:00
GabrirelCouturier
b80ce3510e
BSR and MAC UL encoding fixes
2016-11-28 19:27:25 +01:00
Cedric Roux
860394244b
T: bugfix: lock required
...
When the user clicks on "next UE" or "prev UE" we change the
filters of loggers.
At the same time, the main thread of enb.c processes events
received from the soft-modem and uses the filters, some of them
maybe in the process of being changed.
Changing the filters is not atomic and has to be protected.
2016-11-28 18:28:10 +01:00
Florian Kaltenberger
28923dc8e2
fixing bug introduced in 5c5c336300
2016-11-28 13:58:41 +01:00
Florian Kaltenberger
a4f8fff92b
Merge remote-tracking branch 'origin/develop' into feature-21-TM7
...
Conflicts:
targets/ARCH/EXMIMO/USERSPACE/LIB/openair0_lib.c
2016-11-28 12:56:13 +01:00
Elena_Lukashova
3b9869187b
Adding some printouts for PIA
2016-11-28 11:36:50 +01:00
hbilel
710a246596
enhance BSR log
2016-11-28 10:55:00 +01:00
hbilel
001cf13632
Merge branch 'develop1B' of https://gitlab.eurecom.fr/oai1B/openairinterface5g into BSR_fixes_fabrice
2016-11-28 10:38:27 +01:00
hbilel
ca2aeaccb8
BSR and MAC multiplexing fixes
2016-11-28 10:36:46 +01:00
Bilel
9bea08ab65
Merge branch 'bugfix-35-36-37' into 'develop1B'
...
[OAI-UE] fixes for issue#35 issue#36 issue#37
1-issue#35: miss dci detection
2-issue#36: ack/nack on pusch are badly encoded
3-issue#37: ack/nack are sent on pucch instead of pusch
See merge request !13
2016-11-28 10:24:45 +01:00
GabrirelCouturier
6e21152fac
[OAI-UE] fixes for issue#35 issue#36 issue#37
...
1-issue#35: miss dci detection
2-issue#36: ack/nack on pusch are badly encoded
3-issue#37: ack/nack are sent on pucch instead of pusch
2016-11-28 10:21:01 +01:00
Elena_Lukashova
29d6400210
Optimizing printputs for PIA recever
2016-11-27 18:14:27 +01:00
Elena_Lukashova
ad9a246043
Adding HARQ support for PIA detection.
2016-11-27 17:34:23 +01:00
Cedric Roux
ee934102b6
T: switch UE in enb tracer
...
Just below the logo you see the current UE, eg. [UE 0],
and near that you have two "buttons" [prev UE] and [next UE].
You click with left button of mouse on those and the various
plots that depend on the UE are now done for the new UE (say UE 1
instead of UE 0 if you click on [next UE]).
The plots are not cleared when you switch.
Let's say it's a feature.
2016-11-25 17:19:33 +01:00
Cedric Roux
484cad2431
T: add function xy_plot_set_title
2016-11-25 17:17:39 +01:00
Cedric Roux
8eeebdaf98
T: add function label_set_text
2016-11-25 17:17:16 +01:00
Elena_Lukashova
afe698db10
Adding retransmission statistics.
2016-11-25 17:17:03 +01:00
Cedric Roux
0bb875d9c2
T: free previous filter in logger_set_filter
2016-11-25 17:15:25 +01:00
Cedric Roux
956135f9a3
T: add mechanisms to free filters
2016-11-25 17:14:40 +01:00
Florian Kaltenberger
426e6cd74b
bugfix for TDD: special subframe was not transmitted.
2016-11-25 16:55:35 +01:00
Elena_Lukashova
bea768660b
Fixing bug in dlsim.c for LLR updates for SIC receiver.
2016-11-25 16:26:30 +01:00
ROBERT Benoit
0579d47154
Complete autotest patch files set for OAI1B autotest setup
2016-11-25 14:43:28 +01:00
ROBERT Benoit
7d5ec24bb5
Merge remote-tracking branch 'origin/develop' into Enhancement-142-OAI_UE_autotest_framework
2016-11-25 14:39:53 +01:00
Xiwen JIANG
a242028878
Merge branch 'feature-21-TM7' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-21-TM7
2016-11-25 11:42:06 +01:00
Florian Kaltenberger
7f0679593c
Merge remote-tracking branch 'origin/develop' into feature-21-TM7
2016-11-25 11:10:02 +01:00
Rohit Gupta
7f1bef9b65
minor fix to Google Protobuf logging in installation
2016-11-25 10:53:26 +01:00
Rohit Gupta
045c947015
Merge branch 'develop' into feature-68-enb-agent
2016-11-25 10:08:53 +01:00
Rohit Gupta
c4405d6c41
Merge branch 'develop' of gitlab.eurecom.fr:oai/openairinterface5g into develop
2016-11-25 10:08:38 +01:00
Rohit Gupta
62ed687ef5
[Gitlab CI] minor fix to logging
2016-11-25 10:05:56 +01:00
hbilel
7637ed26ba
Merge branch 'develop1B' of https://gitlab.eurecom.fr/oai1B/openairinterface5g into BSR_fixes_fabrice
2016-11-24 18:31:41 +01:00
hbilel
a6e6a2d649
Merge branch 'bugfix_33_rlc_am_bo' into develop1B
2016-11-24 18:27:46 +01:00
hbilel
eb711645d0
fix issue#33 : RLC AM BO
2016-11-24 18:26:23 +01:00
hbilel
b0b472e035
BSR fixes on CMW500
2016-11-24 18:17:21 +01:00
Xiwen JIANG
8a08206670
Merge branch 'develop' into feature-21-TM7
2016-11-24 17:59:30 +01:00
Xiwen JIANG
41fd001b31
delete redundant code in beamforming.c
2016-11-24 17:57:52 +01:00
Florian Kaltenberger
c67536062b
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-11-24 17:16:47 +01:00
Florian Kaltenberger
933dc966c0
fix for EXMIMO
2016-11-24 17:14:50 +01:00
Florian Kaltenberger
3b7a9400f2
Merge branch 'master' into develop
...
Conflicts:
targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.band38.tm1.exmimo2.conf
2016-11-24 17:14:44 +01:00
Florian Kaltenberger
f15426d75c
fixing config file
2016-11-24 16:56:30 +01:00
Cedric Roux
03231dd163
hotfix: fix pucch_procedures
...
Something went wrong somewhere in the commit history, the function
was not correct.
The most obvious symptom was that way too much SR (scheduling requests)
were given to the UE whenever it had some PUCCH to send.
The case for TDD has not been tested.
2016-11-24 16:46:41 +01:00
Florian Kaltenberger
af2ad0682f
removing -L option from dlsim testcases
2016-11-24 15:00:40 +01:00
Elena_Lukashova
8cfd5f29f6
Adding spatial low, medium and high correlation matrices for 2x2
...
EPA channel model. -gV, -gW, -gX.
2016-11-24 15:00:14 +01:00
Rohit Gupta
9d64a0382b
Merge branch 'develop' of gitlab.eurecom.fr:oai/openairinterface5g into develop
2016-11-24 14:59:07 +01:00
Rohit Gupta
0c52c76df6
add RRH test cases
2016-11-24 14:58:51 +01:00
S. Sandeep Kumar
03eb2c498d
missed to commit changes for if_defs.h file
2016-11-24 19:27:57 +05:30
S. Sandeep Kumar
fe10da2642
fix conflicting prach size in if4p5
2016-11-24 19:14:50 +05:30
Florian Kaltenberger
f8aea6189d
Merge branch 'feature-21-TM7' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-21-TM7
2016-11-24 14:44:06 +01:00
Florian Kaltenberger
7715900222
some more bugfixes (old and introcuded by merge) plus ability too use phy-test for tm7
2016-11-24 14:42:59 +01:00
S. Sandeep Kumar
f1bd8ba02a
fix conflicting prach size in if4p5
2016-11-24 17:34:48 +05:30
fnabet
880cddb4a0
Merge branch 'develop1B' into BSR_fixes_fabrice
2016-11-24 11:39:56 +01:00
fnabet
6f0b71deac
merge Calvin changes and add fixes
2016-11-24 11:37:13 +01:00
Bilel
ec92c55528
Merge branch 'bugfix-32' into 'develop1B'
...
[OAI-UE] fix for issue#32
1- timing Advance fix
2- harq UL fix
See merge request !12
2016-11-24 10:58:34 +01:00
GabrirelCouturier
33e89e3e9f
[OAI-UE] fix for issue#32
...
1- timing Advance fix
2- harq UL fix
2016-11-24 10:54:37 +01:00
Xiwen JIANG
953de398a3
adapt the tm7 configuration file
2016-11-24 10:46:20 +01:00
Raymond Knopp
4b64879072
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-11-24 15:57:34 +08:00
Raymond Knopp
eb854b8e6a
setting of frame_tx in lte-enb.c
2016-11-24 15:56:38 +08:00
Raymond Knopp
8bc94223b4
remove debugging traces from lte-enb.c and if4_tools.c. modulo 1024 bug on frame counter in lte-enb.c
2016-11-24 15:55:00 +08:00
Raymond Knopp
46b0c0fea5
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-11-24 14:54:52 +08:00
Raymond Knopp
77486af848
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-11-24 14:46:00 +08:00
Raymond Knopp
4429a6a601
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
2016-11-24 14:45:48 +08:00
Xiwen JIANG
f216bacb11
fix the dlsim for TM7
2016-11-23 17:01:22 +01:00
Florian Kaltenberger
abab672e49
Merge branch 'feature-21-TM7' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-21-TM7
...
Conflicts:
openair1/PHY/INIT/lte_init.c
2016-11-23 15:26:02 +01:00
Florian Kaltenberger
7133633997
bugfixes in precoder
2016-11-23 15:17:01 +01:00
Florian Kaltenberger
441b062e3a
changing config files
2016-11-23 15:15:56 +01:00
Cedric Roux
2716aaa711
T: activate all info/warning/error legacy traces by default in enb.c
2016-11-23 15:00:36 +01:00
Raymond Knopp
085718ae8b
RRU synchronization debugging
2016-11-23 19:12:02 +08:00
Xiwen JIANG
b4a6e03053
error message disply fixed in dl bf ch est
2016-11-23 11:48:18 +01:00
Xiwen JIANG
263254408d
use symbol based OFDM modulation in dlsim
2016-11-23 10:41:00 +01:00
Raymond Knopp
e3bf5fe068
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
targets/RT/USER/lte-enb.c
2016-11-23 14:39:09 +08:00
Raymond Knopp
adb0e77d39
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
targets/RT/USER/lte-enb.c
2016-11-23 14:38:24 +08:00
Raymond Knopp
8df3f84fc4
small change in if4p5_asynch_DL
2016-11-23 14:36:22 +08:00
Raymond Knopp
a4bdaddaaf
commit from other machine prior to merge
2016-11-23 14:05:36 +08:00
Raymond Knopp
780e213dcc
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-11-23 13:47:30 +08:00
Raymond Knopp
3e838ca675
temporary commit for testing 2 RRU case as TM2 (distributed antennas)
2016-11-23 13:46:47 +08:00
Raymond Knopp
f02c1f20e4
frame synchronization mechanism and robustification of if4p5 packet handling for out-of-order asynchronous reception (PDLFFT)
2016-11-23 13:42:37 +08:00
Raymond Knopp
63c68100f3
spawn a thread for frequency adjustments in USRP device driver
2016-11-23 10:15:39 +08:00
Elena_Lukashova
5869ec9633
Modifying names of output files for updated CSI.
2016-11-22 23:25:18 +01:00
Xiwen JIANG
7dbc59c830
adapt dlsim to TM7
2016-11-22 18:34:57 +01:00
Florian Kaltenberger
f446a5ea17
Merge branch 'develop' into feature-21-TM7
2016-11-22 18:24:40 +01:00
Florian Kaltenberger
c3c3f27487
fixes for phy-test option at eNB
2016-11-22 18:15:57 +01:00
Xiwen JIANG
d2398e1afe
Merge branch 'feature-21-TM7' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-21-TM7
2016-11-22 15:03:45 +01:00
Xiwen JIANG
eab744f6f9
add in allocate_REs_in_RB the TM7 case
2016-11-22 14:57:11 +01:00
Cedric Roux
5a3b3ed0b5
minor: remove compilation warnings
2016-11-22 14:02:52 +01:00
Cedric Roux
ce8c81af0a
hotfix: cqi_crc_status was not properly set/reset
2016-11-22 14:01:41 +01:00
Xiwen JIANG
60a1f34a5a
cosmetic changes
2016-11-22 12:29:18 +01:00
Cedric Roux
b526ef7b47
T: update a trace
...
add ndi to trace ENB_MAC_UE_DL_SDU
2016-11-22 12:04:06 +01:00
Cedric Roux
3ae5f95653
T: fix small typo
2016-11-22 11:21:54 +01:00
Xiwen JIANG
1a8069b924
bug fixed for DEBUG_PHY in lte_init.c
2016-11-22 11:19:23 +01:00
Cedric Roux
b55b63c5ab
hotfix: hack to improve PHICH generation
...
The eNodeB may sometimes wrongly generate PHICH because somewhere
'phich_active' is not reset to 0, due to an unidentified reason. When
adding this hack the problem seems to disappear completely.
This is not the end of the story. The real underlying problem has to be
understood and fixed correctly.
2016-11-22 10:46:04 +01:00
Cedric Roux
6bb69e1964
hotfix: correct Msg3 ressource blocks reservation
...
The Msg3 ressource blocks used by random access procedure
were not correctly handled. The MAC scheduler could wrongly
allocate a ressource block for both random access Msg3 and
a regular UE.
This hotfix hopefully fixes the problem.
A new function "set_msg3_subframe" has been added in the
interface between PHY and MAC.
2016-11-22 10:38:18 +01:00
Cedric Roux
43df291374
T: add some traces
...
- Msg3 allocation
- initiation of Random Access procedure
2016-11-22 10:17:22 +01:00
Raymond Knopp
09a2fa65e3
further additions for multiple-RRU synchronizationwq
2016-11-22 16:09:43 +08:00
Elena_Lukashova
7a6ef377b5
Fixing a bug in dlsch_demodulation.c for llr calls.
2016-11-22 00:30:08 +01:00
Elena_Lukashova
8cb78dc4d5
Adding the updated CSI option for retransmission of TB1 in TM4. Pass -U from the command line to enable.
2016-11-21 22:18:21 +01:00
ROBERT Benoit
040afd4800
Add missing template files for HTML report generation
2016-11-21 16:02:00 +01:00
Florian Kaltenberger
e450941f7a
Merge branch 'develop' into feature-21-TM7
2016-11-21 12:08:30 +01:00
Florian Kaltenberger
5c5c336300
fixes to make lte-softmodem compile again
2016-11-21 11:55:36 +01:00
Florian Kaltenberger
e86b3e31c7
changing some config files
2016-11-21 11:39:47 +01:00
Bilel
dab71e4cbe
Merge branch 'bugfix-26' into 'develop1B'
...
[OAI-UE] several fixes in OAI-UE
1- implement max harq retrans
2- bug in harqId > 1 for dci format 1A
3- wrong G computation
4- bug in harq UL for scheduling flag
5- initial sync, limit freq offset to 150Hz
See merge request !11
2016-11-21 11:33:43 +01:00
GabrirelCouturier
9c4cee34f0
[OAI-UE] several fixes in OAI-UE
...
1- implement max harq retrans
2- bug in harqId > 1 for dci format 1A
3- wrong G computation
4- bug in harq UL for scheduling flag
5- initial sync, limit freq offset to 150Hz
2016-11-21 11:30:24 +01:00
Bilel
38b1efddf2
Merge branch 'bugfix-26' into 'develop1B'
...
merge oai/develop to oai1B/debelop1B
See merge request !10
2016-11-21 11:24:32 +01:00
GabrirelCouturier
34b75f393d
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-26
2016-11-21 11:19:30 +01:00
Raymond Knopp
8369af0964
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-11-21 18:02:23 +08:00
Raymond Knopp
1fcc78375c
debugging traces in lte-enb
2016-11-21 18:02:10 +08:00
Raymond Knopp
20b0aae98b
integration of over-the-air synchronization mechanism for distributed RRU
2016-11-21 18:00:36 +08:00
Raymond Knopp
e0314d8b75
update to timing drift compensation in rfdevice
2016-11-21 12:19:21 +08:00
Raymond Knopp
958c66c6db
handling of timing drift in rfdevice
2016-11-21 12:06:22 +08:00
Raymond Knopp
79bd3ea7d4
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-11-21 10:37:56 +08:00
Raymond Knopp
f974ec264e
debugging information in lte-enb, addition of external reference option in lte-softmodem and usrp_lib.cpp
2016-11-21 10:37:01 +08:00
Elena_Lukashova
d9b32975c9
Fixing some printouts into .csv file for TM4.
2016-11-19 14:20:54 +01:00
Elena_Lukashova
6fe8c9acec
Implementing PUSCH precoding option for the TB1 retransmission in TM4.
...
The independent retransmission of TB1 will take data from the last PUSCH
report, when both TB were active and keep it for all the retransmission
rounds.
Now the TPMI for the retransmissions of TB1 is passed from the command
line with -K(tpmi): -K0 for Alamouti, -K5 for PUSCH column1 , etc.
2016-11-19 01:10:16 +01:00
Raymond Knopp
afbab21a54
put MAX_NUM_CCs back to 1
2016-11-18 13:40:14 -08:00
Raymond Knopp
85361335e5
frame_length check in compute_beta for LLR8 turbo-decoder
2016-11-18 13:33:13 -08:00
ROBERT Benoit
0b1050c149
Add following functionnalities to OAI UE autotest framework
...
- add progess bar report
- reduce ssh max_tries to 10
- cleanOldPrograms -> change kill cmd line to be able to run autotest on same machine than lte-softmodem (thanks Rohit & Gabriel)
- Cleanning output prints
- add --skip-machine-preparation on cmd line
- add --skip-sanity-check on cmd line
- add HTML REPORT (no-S1 only)
- add XML detailled report (no-S1 only)
2016-11-18 18:31:57 +01:00
Xiwen JIANG
033513034f
Merge branch 'feature-21-TM7' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-21-TM7
...
Conflicts:
cmake_targets/CMakeLists.txt
openair2/ENB_APP/enb_config.c
2016-11-18 16:58:31 +01:00
Florian Kaltenberger
12f1cb9c7c
fixing original dlsim from develop
2016-11-18 16:23:01 +01:00
Florian Kaltenberger
8769024922
Merge remote-tracking branch 'origin/develop' into feature-21-TM7
...
Conflicts:
cmake_targets/CMakeLists.txt
openair1/PHY/INIT/lte_init.c
openair1/PHY/INIT/lte_param_init.c
openair1/PHY/LTE_ESTIMATION/lte_dl_channel_estimation.c
openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
openair1/PHY/LTE_REFSIG/lte_dl_uespec.c
openair1/PHY/LTE_TRANSPORT/dci.c
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
openair1/PHY/LTE_TRANSPORT/dlsch_modulation.c
openair1/PHY/LTE_TRANSPORT/initial_sync.c
openair1/PHY/LTE_TRANSPORT/pbch.c
openair1/PHY/LTE_TRANSPORT/pilots.c
openair1/PHY/LTE_TRANSPORT/pmch.c
openair1/PHY/LTE_TRANSPORT/proto.h
openair1/PHY/defs.h
openair1/SCHED/phy_procedures_lte_eNb.c
openair1/SCHED/phy_procedures_lte_ue.c
openair1/SIMULATION/LTE_PHY/dlsim.c
openair1/SIMULATION/LTE_PHY/mbmssim.c
openair1/SIMULATION/LTE_PHY/pdcchsim.c
openair1/SIMULATION/LTE_PHY/ulsim.c
openair2/ENB_APP/enb_config.c
openair2/RRC/LITE/rrc_eNB.c
targets/ARCH/EXMIMO/USERSPACE/LIB/openair0_lib.c
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-ue.c
targets/RT/USER/sched_rx_pdsch.c
targets/SIMU/USER/init_lte.c
targets/SIMU/USER/oaisim_functions.c
2016-11-18 15:35:21 +01:00
GabrirelCouturier
7f74065484
BSR fixes for ping
2016-11-18 15:22:11 +01:00
Cedric Roux
c03f13c07b
T: add a trace for PHICH
2016-11-18 10:29:48 +01:00
calvin wang
319ae6fbbf
fix bsr report inaccurate value
2016-11-18 16:44:18 +08:00
Cedric Roux
64615dcc8e
hotfix: correct PHICH generation
...
The PHICH generation is wrong.
HARQ process X is uplink scheduled at TTI n.
At TTI n+4 the eNB receives the data.
At TTI n+8 the eNB sends ACK/NACK on the PHICH.
The problem is that PHICH generation is done after scheduling.
And PHICH generation uses "first_rb" and "n_DMRS" to compute
"ngroup_PHICH" and "nseq_PHICH".
So at TTI n+8 if the eNB has reused the HARQ process X for
a new uplink scheduling the values "first_rb" and "n_DMRS"
may have changed.
We need to use the previous values.
One solution would have been to do PHICH generation before
scheduling. The problem is that "generate_phich_top" does more
than PHICH generation. It has to setup parameters to sort of
"emulate" a DCI0 in case of retransmission scheduled without
DCI0. So part of it has to be done after scheduling. We would
have to split the function.
The simple adopted fix is to store old values of "first_rb"
and "n_DMRS" and use those values in "generate_phich_top".
This fix has only been tested with FDD. TDD may miserably fail.
2016-11-18 09:40:14 +01:00
ROBERT Benoit
9648d1f245
Merge remote-tracking branch 'origin/develop' into Enhancement-142-OAI_UE_autotest_framework
2016-11-18 09:37:10 +01:00
Xiwen JIANG
fbfb756ca1
Merge branch 'master' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-21-TM7
...
Conflicts:
cmake_targets/CMakeLists.txt
openair2/ENB_APP/enb_config.c
2016-11-17 16:36:22 +01:00
Raymond.Knopp
963ccb9bad
some changes for tx-gain setting
2016-11-17 11:57:14 +01:00
Elena_Lukashova
22609539b0
Fixing DCI overwritinng during retransmissions.
...
Modifying some printouts into the file.
2016-11-16 23:15:26 +01:00
Fabrice Nabet
92383b825a
Merge branch 'bugfix-12-phy-test_mode_MCS_selection' into 'develop1B'
...
during 'harmony' developments initialisation of some --phy-test parameters were removed
See merge request !8
2016-11-16 18:59:14 +01:00
Fabrice Nabet
94a1510d2b
Merge branch 'bugfix-13-turbo_decoder_sse_8bit-frame-length-error' into 'develop1B'
...
Update 3gpplte_turbo_decoder_sse_8bit.c
maximum frame length is 6144
See merge request !9
2016-11-16 18:56:19 +01:00
fnabet
69ccc900e8
fix BSR long size and fill
2016-11-16 18:24:04 +01:00
Elena_Lukashova
9c65225869
Full Support for TM4 HARQ, excpept for PUSCH precoder at this moment.
2016-11-16 16:20:00 +01:00
Cedric Roux
f116a10de3
hotfix: turbo decoder should not fail if CRC is 0
...
The case of a CRC == 0 is legal.
After discussion with Raymond, it is also possible to have all
bits at 0 (and so a CRC==0) if there is no transmission and thus
not much energy.
So this hotfix may introduce new problems (false decoding).
A future work is to handle this case properly by not calling the
turbo decoder if there is not enough energy received.
The problem might manifest itself more in the UE part, especially
when it tries to decode MIB and/or SIB (if I understood correctly).
2016-11-16 15:20:18 +01:00
Xenofon Foukas
c0ad88e537
Fixed bug in the creation of MAC PDUs in the local flexran scheduler
2016-11-16 16:12:30 +02:00
fnabet
2965d79dd4
Merge branch 'L2_Stabilization-22-BSR_fertilization' of https://gitlab.com/TCL_Communications/openairinterface5g into BSR_fixes_fabrice
...
rebase
2016-11-15 16:48:42 +01:00
hbilel
f0f34c029b
BSR fixes with CMW500
2016-11-15 16:13:24 +01:00
calvin wang
3bd591bfec
change bsr trigger
2016-11-15 18:41:46 +08:00
Rohit Gupta
be0b164a52
minor type updates to E-UTRAN User Guide
2016-11-14 18:49:07 +01:00
Rohit Gupta
54d8b116f9
updates to E-UTRAN User Guide
2016-11-14 18:40:03 +01:00
calvin wang
6097e0516f
fix build error
2016-11-14 11:10:33 +08:00
calvin wang
09f149d86b
Stabilization UE BSR feature
2016-11-11 18:01:39 +08:00
Xenofon Foukas
1c86e23edf
Merge remote-tracking branch 'origin/develop' into feature-68-enb-agent
2016-11-11 08:54:56 +02:00
Rohit Gupta
ad8b86d93a
Update rcc.band7.tm1.if5.usrpb210.conf
2016-11-10 18:11:19 +01:00
Rohit Gupta
58284f60e7
Update rru.band7.tm1.if5.usrpb210.conf
2016-11-10 18:10:21 +01:00
Rohit Gupta
0362cb8644
Update rru.band7.tm1.if5.usrpb210.conf
2016-11-10 18:09:09 +01:00
Bilel
1568b5a167
Merge branch 'bugfix-19' into 'develop1B'
...
[OAI-UE] fix for issue#19: DCI0 detction with wrong RIV
See merge request !7
2016-11-09 17:00:15 +01:00
GabrirelCouturier
ea4f2948fd
[OAI-UE] fix for issue#19: DCI0 detction with wrong RIV
2016-11-09 16:58:11 +01:00
Xenofon Foukas
985dcdc38c
Removed deprecated configuration files for FlexRAN agent
2016-11-09 12:11:26 +02:00
Xenofon Foukas
bb5b90eab0
Added compilation options for enabling/disabling FlexRAN agent
2016-11-09 12:09:44 +02:00
Xenofon Foukas
2078a9e57c
Added macros for enabling FlexRAN agent operation
2016-11-09 12:09:02 +02:00
Elena_Lukashova
630e39aea3
Intermediate commit. Adding HARQ support for SIC receiver. Changes in dci_tools.c to map TB to CW in a proper way.
...
Enable different options for TB1 retransmissions. Needs further improvements.
2016-11-09 00:55:57 +01:00
Xenofon Foukas
cf59e0d891
Added notification messages for control delegation in dl_scheduler VSF
2016-11-08 14:40:34 +02:00
Rohit Gupta
1a99e785a0
remove warnings
2016-11-08 03:14:01 +01:00
fnabet
d56c651081
Reapply BSR changes
2016-11-07 11:57:02 +01:00
fnabet
2b045e8106
Merge branch 'develop1B' of https://gitlab.com/TCL_Communications/openairinterface5g into L2_Stabilization-22-BSR_fertilization
2016-11-07 11:40:19 +01:00
fnabet
141689e793
Merge branch 'L2_Stabilization-22-BSR_fertilization' of https://gitlab.com/TCL_Communications/openairinterface5g into L2_Stabilization-22-BSR_fertilization
2016-11-07 11:38:46 +01:00
fnabet
b9416fb542
Merge tag 'v1B0.4' of https://gitlab.eurecom.fr/oai1B/openairinterface5g into develop1B
...
fix for segmentation fault in turbo decoder + cell scan issue
2016-11-07 11:26:45 +01:00
fnabet
048b5384dd
[OAI-UE] revert commit 8236206c and 9672b410 "BSR-stabilization + rebase from oai1B"
2016-11-07 11:22:11 +01:00
Bilel
de98c17e48
Merge branch 'bugfix-18' into 'develop1B'
...
[OAI-UE] fix for issue#18: Cell sync issue
See merge request !6
2016-11-07 11:03:54 +01:00
GabrirelCouturier
5e94d108a1
[OAI-UE] fix for issue#18: Cell sync issue
2016-11-07 11:01:25 +01:00
Bilel
68bcfd64e4
Merge branch 'bugfix-14' into 'develop1B'
...
[OAI-UE] fix for issue#14: segmentation fault in turbo decoder
See merge request !5
2016-11-07 10:55:00 +01:00
GabrirelCouturier
8750acebbc
[OAI-UE] fix for issue#14: segmentation fault in turbo decoder
2016-11-07 10:50:05 +01:00
Xenofon Foukas
83929d42f2
Refactored local FlexRAN scheduler to make further use of FlexRAN API
2016-11-05 14:09:48 +02:00
fnabet
8236206cb0
Merge tag 'v1B0.3' of https://gitlab.eurecom.fr/oai1B/openairinterface5g into develop1B
...
Add fixes for Attach
2016-11-04 18:14:35 +01:00
Fabrice Nabet
9672b41089
Merge branch 'L2_Stabilization-22-BSR_fertilization' into 'develop1B'
...
L2 stabilization 22 bsr fertilization
merge BSRfertilization branch to develop1B
See merge request !13
2016-11-04 16:58:09 +00:00
Xenofon Foukas
5864cc08cd
Integrated scheduler to overall FlexRAN agent functionality
2016-11-04 17:49:39 +02:00
Xenofon Foukas
92ef1739b1
Restructured FlexRAN agent file hierarchy
2016-11-04 17:36:45 +02:00
Xenofon Foukas
8baf3e7e57
Changed naming convention for flexran related calls
2016-11-04 17:28:04 +02:00
Xenofon Foukas
0cee514c73
Fixed problem with comment causing a bug in compilation
2016-11-04 13:19:08 +02:00
Xenofon Foukas
92fda18ab6
Added brief documentation of agent API functions
2016-11-04 12:42:10 +02:00
Rohit Gupta
8031eaa05c
[Gitlab-CI]: Merge from Enhancement-142-OAI_UE_autotest_framework
2016-11-04 01:24:29 +01:00
Rohit Gupta
eff2887d92
[Gitlab CI]: Move autotest library to tools
2016-11-03 23:27:08 +01:00
Rohit Gupta
65f047094c
[Gitlab CI]: additional packages for pylab support for autotest
2016-11-03 21:40:04 +01:00
Rohit Gupta
5bbdefeee8
add installation of colorama
2016-11-03 21:32:12 +01:00
Rohit Gupta
057de07192
Merge bugfix-137-uplink-fixes and update README
2016-11-03 21:20:29 +01:00
Rohit Gupta
030bcd52d2
Merge branch 'bugfix-137-uplink-fixes' into develop
2016-11-03 21:19:16 +01:00
Florian Kaltenberger
0554132dcf
Merge branch 'enhancement-64-phy_test' into 'develop'
...
Enhancement 64 phy test
See merge request !46
2016-11-03 17:03:44 +01:00
Florian Kaltenberger
535755a528
resetting two files to their state in develop
2016-11-03 17:02:06 +01:00
Florian Kaltenberger
c61d74cd49
Merge remote-tracking branch 'origin/develop' into enhancement-64-phy_test
2016-11-03 16:45:17 +01:00
hbilel
9fbbd0678a
[OAI-UE] attach accept fix
2016-11-03 15:53:06 +01:00
Bilel
7fb6b945ef
Merge branch 'issue-17-rrcConnectionReconf-fix' into 'develop1B'
...
[OAI-UE] RRCConnectionReconf fixes
1- SRB2 fix
2- attach accept, support type of list 0 with number of element = 1
See merge request !4
2016-11-03 15:33:09 +01:00
hbilel
81837312cb
[OAI-UE] RRCConnectionReconf fixes
...
1- SRB2 fix
2- attach accept, support type of list 0 with number of element = 1
2016-11-03 15:29:33 +01:00
Raymond.Knopp
b018a3bbe9
configuration file for 10 MHz LMMSDR, 10 MHz, RF configuration file bugfix, first_rx > 1 for LMSSDR
2016-10-31 20:47:10 +01:00
Raymond Knopp
2d963f5330
prototype of trx_stop_func
2016-10-31 10:17:54 -07:00
Raymond Knopp
45184c769c
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
...
Conflicts:
cmake_targets/CMakeLists.txt
targets/ARCH/LMSSDR/USERSPACE/LIB/lms_lib.cpp
targets/ARCH/LMSSDR/USERSPACE/LIB/sodera_lib.cpp
2016-10-31 09:58:23 -07:00
Raymond Knopp
7b39d594d5
new library for LMSSDR. Integrated by Lime.
2016-10-31 09:49:02 -07:00
fnabet
c5a8dbfee2
Merge branch 'develop1B' of https://gitlab.eurecom.fr/oai1B/openairinterface5g into develop1B
2016-10-28 14:35:13 +02:00
Bilel
04acbd4d6a
Merge branch 'issue-15-ueCapabilityInfo-featureGrp' into 'develop1B'
...
[OAI-UE] add featureGroup to UeCapability (only for usim test mode)
add featureGroup to UeCapability (only for usim test mode)
See merge request !2
2016-10-28 09:59:24 +02:00
hbilel
4eb3774a74
[OAI-UE] add featureGroup to UeCapability (only for usim test mode)
2016-10-28 09:56:31 +02:00
Raymond Knopp
bc7df9f5c4
removed debugging traces
2016-10-27 14:44:08 +02:00
Bilel
3643c3e80a
Merge branch 'feature-11-UE-periodic-CQI-RI' into 'develop1B'
...
Feature 11 ue periodic cqi ri
pucch format2 periodic cqi/ri
See merge request !1
2016-10-27 14:43:11 +02:00
Raymond Knopp
90e3931e4e
resynch for timestamp
2016-10-27 14:41:58 +02:00
hbilel
10ab1c3e8b
[OAI-UE] - PUCCH Format2 Periodic CQI/RI reporting
...
Handle SRS TX in case of CQI / SR / AN simultaneous transmission
2016-10-27 14:30:30 +02:00
Raymond Knopp
17e8a047b3
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-10-27 12:38:52 +02:00
Raymond Knopp
e156079e33
timeout for UDP recvfrom
2016-10-27 12:36:38 +02:00
Raymond Knopp
ddb959991d
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-10-27 11:21:02 +02:00
Raymond Knopp
af9c77d09f
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
targets/ARCH/ETHERNET/USERSPACE/LIB/eth_raw.c
targets/ARCH/ETHERNET/USERSPACE/LIB/eth_udp.c
targets/ARCH/ETHERNET/USERSPACE/LIB/ethernet_lib.c
2016-10-27 01:23:19 -07:00
Raymond Knopp
11db1d89bb
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
targets/RT/USER/lte-enb.c
2016-10-27 09:58:56 +02:00
Raymond Knopp
5e1d462aa9
resynch for initial RF acqusition
2016-10-27 09:56:23 +02:00
luhan wang
727cdb4a87
updates for udp IF4p5
2016-10-27 09:45:56 +02:00
luhan wang
3c7ec4e416
added gtkw files for rcc
2016-10-27 07:47:47 +02:00
calvin wang
6644204765
add BSR trigger code for interoperability test
2016-10-27 11:47:17 +08:00
calvin wang
0dfde2f441
Merge branch 'develop1B' of https://gitlab.com/TCL_Communications/openairinterface5g into L2_Stabilization-22-BSR_fertilization
2016-10-27 09:07:13 +08:00
calvin wang
7e6a74d5be
change debug info
2016-10-26 13:21:26 +08:00
Rohit Gupta
9927838e8c
Update README.txt with License information
2016-10-25 22:44:45 +02:00
Rohit Gupta
b7a467839d
Update NOTICE.txt for License information
2016-10-25 22:42:33 +02:00
ROBERT Benoit
2ace4029f3
Update 3gpplte_turbo_decoder_sse_8bit.c
...
maximum frame length is 6144
2016-10-25 18:09:59 +02:00
ROBERT Benoit
0277475bef
during 'harmony' developments initialisation of some --phy-test parameters were removed
2016-10-25 17:47:58 +02:00
ROBERT Benoit
c37446507a
Add testing capabilities for OAI UE in autotest framework
...
Autotest Framework modifications:
-> paramiko.Transport((hostname, ports)) : issue on my configuration
-> add --test-suite command line parameter to select a different test suite XML file (default is test_case_list.xml)
-> add patch file functionnality when installing remote machine : required to add LOG printing for pass/fail evaluation
-> add lte-softmodem-noS1 test class - fork of lte-softmodem with the following modification
- no EPC management on lte-softmodem-noS1 class
- add cell synchronization detection as a precondition for test results analysis
- add metric extraction for pass/fail criteria (metrics are defined in XML file)
- generate graphics for performances metrics (used in the HTML report -> not available in this delivery)
Patch files:
-> autotest_ue_cell_synch_event.patch : Add log for cell synchronization detection
-> autotest_ue_dlsch_bitrate_metric.patch : Add log for DLSCH bitrate capture
-> 3gpplte_turbo_decoder_sse_8bit.patch : hotfix for turbo decoder in autotest (issue followed in oai1B project)
-> phy_test__target_dl_mcs.patch : hotfix for --phy-test configuration (MCS)
2016-10-25 16:51:37 +02:00
fnabet
f55c4e46cb
Merge tag 'v1B0.1' of https://gitlab.eurecom.fr/oai1B/openairinterface5g into develop1B
...
OAI1B wk43 preparation: fixes, SRS, merge from develop
2016-10-25 13:36:34 +02:00
Xenofon Foukas
b6c7909d03
Fixed bugs related to MAC padding and RLC requests in AM mode
2016-10-24 19:14:07 +03:00
hbilel
31fbc80520
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop1B
...
parent a6742020 - Commit 1fa2f76e61
Conflicts:
targets/RT/USER/lte-softmodem.c
2016-10-24 16:21:05 +02:00
Raymond Knopp
db8c2a0537
update of ETHERNET interfaces (removal of global variables).
2016-10-23 23:29:21 -07:00
Elena_Lukashova
64116b90e1
Adding HARQ support for TM4. No fallback to Alamouti yet.
...
Counting for the number of 2CWs or 1CW retransmissions.
Adding corresponding changes to the phy_scope.
2016-10-23 21:38:58 +02:00
Rohit Gupta
1fa2f76e61
minor fix for config file for new changes to RRH/TM1
2016-10-21 23:25:53 +02:00
Bilel
5bdfa81204
Merge branch '39-autentication-failure-in-case-of-usim-test' into 'develop1B'
...
[OAI-UE] Authetification XOR Algo for usim test
Closes #39
See merge request !10
2016-10-21 13:23:14 +00:00
fnabet
15e299bd11
[OAI-UE] Authetification XOR Algo for usim test
2016-10-21 15:09:42 +02:00
calvin wang
948f2df9f1
modify BSR code according comments
2016-10-21 18:26:50 +08:00
luhan wang
5affbe3848
added resynchronization parameters to PHY_VARS_eNB
2016-10-20 17:32:56 +02:00
Xenofon Foukas
b218128862
Moved agent and protocol to flexran naming convention
2016-10-20 16:37:45 +03:00
Raymond Knopp
d8defff0fa
periodic cqi procedures
2016-10-20 06:32:33 -07:00
luhan wang
f1abf1a775
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-10-20 14:20:27 +02:00
luhan wang
08499a69e2
modifications for IF4p5 UDP transport
2016-10-20 14:19:18 +02:00
luhan wang
25ab1c35ee
modifications for if4p5 UDP
2016-10-20 14:18:32 +02:00
Florian Kaltenberger
b502b5060e
Merge remote-tracking branch 'origin/develop' into enhancement-64-phy_test
...
Conflicts:
targets/ARCH/EXMIMO/USERSPACE/OCTAVE/txsig.m
targets/RT/USER/lte-ue.c
2016-10-19 21:04:00 +02:00
Xenofon Foukas
9ed966cfe6
Added conf file for flexran oaisim
2016-10-19 15:16:58 +03:00
Raymond Knopp
8c37787e23
added 25 PRB rru file
2016-10-19 09:30:42 +02:00
luhan wang
9b9a7e50b4
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-10-19 08:23:18 +02:00
Cedric Roux
a6742020d0
T: add some hack programs
...
- time_meas to measure time spent in scheduling
- timeplot to show nice histograms in realtim of above measurement
2016-10-18 18:17:11 +02:00
Cedric Roux
634ac5fc75
T: update T_message.txt and T_defs.h for VCD traces
...
The VCD traces have changed. This commit gets in synch
with current status.
2016-10-18 18:02:34 +02:00
hbilel
bd8344b471
Merge branch '36-srs-feature-development' into develop1B
2016-10-18 16:55:34 +02:00
fnabet
9938bd5d05
[OAI-UE] SRS feature
...
1- Implement SRS procedures
2- Implement SRS procedures part2
3- Implement SRS: SRS valid on CMW
2016-10-18 16:15:49 +02:00
Xenofon Foukas
93b9b73582
Merge remote-tracking branch 'oai/develop' into oai-integration
...
Conflicts:
cmake_targets/tools/build_helper
openair1/SCHED/phy_procedures_lte_eNb.c
openair2/LAYER2/MAC/eNB_scheduler.c
2016-10-18 16:27:56 +03:00
Rohit Gupta
2ac2aaf355
Merge branch 'develop' into bugfix-137-uplink-fixes
2016-10-17 21:29:12 +02:00
Rohit Gupta
915282df45
remove core secuirity simulators
2016-10-17 21:28:59 +02:00
Rohit Gupta
5725374ed4
Merge branch 'develop' into bugfix-137-uplink-fixes
2016-10-17 21:25:56 +02:00
Rohit Gupta
e345a5d451
hotfix for UE synchronization
2016-10-17 10:35:22 +02:00
Raymond Knopp
2e688c69ca
small bugfixes to avoid segfault in rx_sdu
2016-10-12 23:31:31 -07:00
Rohit Gupta
d566dfd3b1
add tag v0.5 for support for 16.04 + merge of enhancement-10-harmony-lts
2016-10-12 23:35:50 +02:00
Rohit Gupta
039d017561
Merge branch 'enhancement-10-harmony-lts' into develop
2016-10-12 23:33:23 +02:00
fnabet
9d5621e65c
[OAI-UE] SRS feature
...
1- Implement SRS procedures
2- Implement SRS procedures part2
2016-10-12 17:47:31 +02:00
hbilel
0705e71ffc
[OAI-UE] SRS feature
...
1- Implement SRS procedures
2016-10-12 14:29:48 +02:00
Dominique Nussbaum
8dcf0f0cfd
option -a is now handled correctly at UE
2016-10-12 10:17:07 +02:00
Rohit Gupta
256948d61c
make single thread mode=1 by default
2016-10-11 21:49:18 +02:00
Rohit Gupta
e084e58388
merge from develop
2016-10-11 18:52:14 +02:00
Rohit Gupta
433d058ba9
Gitlab CI: delete wildcard programs for kill script
2016-10-11 18:48:24 +02:00
Rohit Gupta
057d7619f6
Merge branch 'feature-131-new-license' into develop
2016-10-11 17:39:26 +02:00
Rohit Gupta
c4a9e94b7f
update README with release tags
2016-10-11 17:38:45 +02:00
Rohit Gupta
4c100a291b
add license to autotest framework + delete files not used in project
2016-10-11 14:10:40 +02:00
Cedric Roux
ef67b3a0a9
hotfix: reserve RBs in Random Access Response case
...
The RBs were not marked as used. A later UE downlink scheduling
could use those RBs, messing up everything.
Not sure this is the right place to mark them used. Maybe better
to do it in the "if (!CCE_allocation_infeasible" test.
2016-10-11 12:29:15 +02:00
fnabet
3bd7225f9a
Merge branch 'develop1B' into L2_Stabilization-22-BSR_fertilization
2016-10-11 12:22:42 +02:00
Rohit Gupta
b481bfd985
Merge branch 'develop' into feature-131-new-license
2016-10-10 19:25:02 +02:00
Bilel
2509847af6
Merge branch '34-fixes' into 'develop1B'
...
[OAI-UE] fixes:
1- frame/subframe update
2- ccch discard regression
Closes #34
See merge request !7
2016-10-10 15:18:30 +00:00
fnabet
138ed2fbb4
[OAI-UE] fixes:
...
1- frame/subframe update
2- ccch discard regression
2016-10-10 17:16:01 +02:00
Cedric Roux
5894f3e6c2
issue 137 - remove hack: MCS reduction in case of CQI reporting
...
This hack was probably put in place in an attempt to circumvent
problems solved by previous commits.
As far as I checked (with my knowledge of the day) we can't exhaust
uplink physical bits with ULSCH data bits when there is CQI reporting
at the same time.
To be refined if this idea is proved wrong.
2016-10-10 16:40:42 +02:00
Cedric Roux
190fc96af4
issue 137 - fix RI bits decoding
...
RI bits are present only in some transmission modes.
For aperiodic reporting (the mode we do as of today),
36.213 7.2.1 (release 10) says:
"RI is only reported for transmission modes 3 and 4,
as well as transmission modes 8 and 9 with PMI/RI reporting"
This commit activates decoding of RI bits only for transmission
modes 3 and 4. 8 and 9 are not done today (as far as I know).
2016-10-10 16:36:52 +02:00
Cedric Roux
b0887a1b85
issue 137 - correct computation of G
...
G was wrongly computed in some places, not taking into account
CQI and RI bits. This commit saves the correct value computed
in ulsch_decoding so we can reuse it in ulsch_decoding_data
(and the like).
Only the file openair1/PHY/LTE_TRANSPORT/ulsch_decoding.c has
been checked. If the computation is done somewhere else the
problem might still exist.
2016-10-10 16:33:12 +02:00
fnabet
b11ed995d2
fix build issue after merge from develop
2016-10-10 16:22:01 +02:00
fnabet
1b8c0d6551
merge from oai1B/develop1B
2016-10-10 14:55:46 +02:00
fnabet
4e7b1790c8
Merge branch 'develop' into develop1B
2016-10-10 14:27:09 +02:00
fnabet
6dcfc1e4f1
Merge branch 'develop1B' of https://gitlab.eurecom.fr/oai1b/openairinterface5g into develop1B
2016-10-10 14:26:44 +02:00
Navid Nikaein
6277038d7f
remove the OMG SUMO related files and update te top-level OMG and cmakefiles
2016-10-10 13:32:16 +02:00
Rohit Gupta
c51edecdee
Merge branch 'bugfix-136-OAI-UE-Attach-fixes' into 'develop'
...
[OAI-UE] issue#136 attach fixes:
- pusch/pucch power control
- pucch encoding call
- srb/drb add with default value
See merge request !44
2016-10-10 12:03:51 +02:00
fnabet
50565a21f7
Merge branch 'develop1B' of https://gitlab.com/TCL_Communications/openairinterface5g into L2_Stabilization-22-BSR_fertilization
2016-10-10 11:48:15 +02:00
Raymond Knopp
a67f12e7cc
correction of scrambling sequence initialization in phich.c (rx_phich)
2016-10-09 00:47:12 -07:00
Raymond Knopp
b64f341962
correction of scrambling sequence initialization in phich.c (generate_phich)
2016-10-09 00:45:03 -07:00
Raymond Knopp
4ad723a176
added rcc gtkw files.
2016-10-08 10:40:36 -07:00
Raymond Knopp
81ae8fb2ff
cleaned up formatting of CCE table trace in eNB_scheduler_primitives.c
2016-10-07 23:41:51 -07:00
Raymond Knopp
0dc55ec8c8
small bugfix for compute_beta8 in turbo-decoder.
2016-10-07 23:13:09 -07:00
Raymond Knopp
470000f0a2
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-10-07 10:59:29 -07:00
Raymond Knopp
26f454aa9a
bugfix in slot_fep_mbsfn.c
2016-10-07 10:49:58 -07:00
Raymond Knopp
e958d7be87
update for mbmssim for new data structures
2016-10-07 10:31:17 -07:00
Raymond Knopp
263ad2aff8
bugfix in dlsim/ulsim for channel model
2016-10-07 10:20:31 -07:00
fnabet
310a87ea90
[OAI-UE] issue#136 attach fixes:
...
- pusch/pucch power control
- pucch encoding call
- srb/drb add with default value
2016-10-07 18:30:55 +02:00
Rohit Gupta
4787c975ec
delete files with GPL License + modify build scripts
2016-10-07 18:19:43 +02:00
Rohit Gupta
73aa265793
Merge branch 'develop' into feature-131-new-license
2016-10-07 13:58:08 +02:00
Florian Kaltenberger
3e81e8c86b
Merge remote-tracking branch 'origin/develop' into feature-59-tm4
...
Conflicts:
openair1/PHY/INIT/lte_init.c
openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
openair1/PHY/LTE_TRANSPORT/dci_tools.c
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/LTE_TRANSPORT/dlsch_modulation.c
openair1/PHY/LTE_TRANSPORT/proto.h
openair1/PHY/MODULATION/slot_fep.c
openair1/PHY/TOOLS/lte_phy_scope.c
openair1/SCHED/phy_procedures_lte_eNb.c
openair1/SIMULATION/LTE_PHY/dlsim.c
2016-10-06 21:56:06 +02:00
Tien-Thinh Nguyen
461e2430d1
fix the issues related to sending ULlULL... to RRU
2016-10-06 14:40:30 +02:00
Fabrice Nabet
813187bf10
Merge branch '15-bugfix-usrp-ta' into 'develop1B'
...
Resolve "Incorrect TA initialization for TDD with USRP"
Merge and Closes #15 Resolve "Incorrect TA initialization for TDD with USRP"
See merge request !6
2016-10-05 15:03:47 +00:00
Fabrice Nabet
af454ffd85
Merge branch '6-bugfix-wireshark-sfn' into 'develop1B'
...
Resolve "OAI wireshark log can now display system frame number"
Merge and Closes #6 : Resolve "OAI wireshark log can now display system frame number"
See merge request !5
2016-10-05 14:55:22 +00:00
fnabet
2e76cb7e37
Merge branch 'develop1B' into 6-bugfix-wireshark-sfn
2016-10-05 16:24:58 +02:00
Fabrice Nabet
af09f29890
Merge branch '7-bugfix-kenb-refresh' into 'develop1B'
...
Resolve "Fix the attach failure at RRC::SecurityModeCommand"
Closes #7
See merge request !4
2016-10-05 10:11:04 +00:00
Rohit Gupta
e86ec1179a
Gitlab CI: Remove 20 MHZ TM2 test cases for USRP B210
2016-10-04 18:59:54 +02:00
Rohit Gupta
462e1e4336
Gitlab CI: Enable 20 MHz test case
2016-10-04 18:36:34 +02:00
Tien-Thinh Nguyen
b8d2455320
fix issues to work with multiple carriers (conga-ercom)
2016-10-04 17:59:07 +02:00
Tien-Thinh Nguyen
e395164a4c
fix issues to work with multiple carriers (conga-ercom)
2016-10-04 17:02:50 +02:00
Rohit Gupta
516a8ba944
Merge branch 'develop' of gitlab.eurecom.fr:oai/openairinterface5g into develop
2016-10-03 20:10:31 +02:00
Rohit Gupta
8f5112b0cb
Gitlab CI: minor fix to test case config file
2016-10-03 20:10:17 +02:00
Rohit Gupta
c1490bb88d
Merge branch 'develop' into enhancement-10-harmony
2016-10-03 15:44:40 +02:00
Rohit Gupta
1db923d6f9
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-10-03 15:44:14 +02:00
Rohit Gupta
13496a4c6b
minor fix to add some log message in oarf compilation fir EXMIMO drivers
2016-10-03 12:59:00 +02:00
Cedric Roux
e196210a51
remove warning: rrc_ue_generate_MeasurementReport had const qualifier
...
rrc_ue_generate_MeasurementReport calls pdcp_data_req which changes
the content of ctxt_pP.
I'm not sure of the logic at play here, so maybe removing 'const' is not
the right solution and there is a real bug...
2016-10-03 11:20:52 +02:00
Cedric Roux
677fdb60b2
remove warning: function s1ap_eNB_e_rab_setup_resp was not declared in header file
2016-10-03 11:15:22 +02:00
Cedric Roux
68090c8b36
bugfix: get_tx_amp called with wrong parameter
2016-10-03 11:14:40 +02:00
Cedric Roux
494e0dc276
bugfix: forgot to reprocess files in the previous commit
2016-10-03 10:41:29 +02:00
Cedric Roux
27bb59d3af
better handling of NETTLE version in CMake
2016-10-03 10:38:46 +02:00
Rohit Gupta
82e54108e9
add hotfix to add usrp ud-host package
2016-10-03 02:45:31 +02:00
Rohit Gupta
7203a5214a
add hotfix to add usrp ud-host package
2016-10-03 02:44:47 +02:00
Rohit Gupta
df63361267
Gitlab CI: compile only for first run
2016-10-02 23:53:45 +02:00
Rohit Gupta
2f14ee6523
Merge branch 'enhancement-10-harmony' of gitlab.eurecom.fr:oai/openairinterface5g into enhancement-10-harmony
2016-10-02 23:47:05 +02:00
Rohit Gupta
43996bbdba
Gitlab CI: minor fixes to test case config file
2016-10-02 21:17:57 +02:00
Rohit Gupta
7c6e48d9c4
detect nettle version using cmake
2016-10-02 19:56:43 +02:00
Rohit Gupta
ec7d0ff2c3
fix compilation warnings
2016-10-02 00:24:25 +02:00
Rohit Gupta
0263186860
compilation fixes for mbmssim
2016-10-01 22:31:40 +02:00
Rohit Gupta
93559037f6
compilation fix for nettle API change in 16.04
2016-10-01 13:10:17 -07:00
Rohit Gupta
e63475debb
minor fix for compilation of core simulators
2016-10-01 22:03:37 +02:00
Rohit Gupta
0c08aa6139
Gitlab CI: remove gdb from some test cases
2016-10-01 21:52:17 +02:00
Rohit Gupta
d9398cdb1e
minor fix for compilation of itti assertions
2016-10-01 18:03:07 +02:00
Rohit Gupta
200cc7f661
Merge branch 'enhancement-10-harmony-lts' of gitlab.eurecom.fr:oai/openairinterface5g into enhancement-10-harmony-lts
2016-10-01 18:00:39 +02:00
Rohit Gupta
42b00ead01
cmake list fix for detecting nettle version for at_commands
2016-10-01 08:54:27 -07:00
Rohit Gupta
7e8bfdefce
Merge branch 'enhancement-10-harmony' into enhancement-10-harmony-lts
2016-10-01 17:50:17 +02:00
Rohit Gupta
1459432fee
Merge branch 'enhancement-10-harmony' of gitlab.eurecom.fr:oai/openairinterface5g into enhancement-10-harmony
2016-10-01 17:49:10 +02:00
Rohit Gupta
4ac71a6e46
fixes for automatic version detection of nettle for 14.04/16.04
2016-10-01 15:03:56 +02:00
Raymond Knopp
5ed184ddf2
removed debugging in pucch.
2016-10-01 02:43:26 -07:00
Raymond Knopp
9f972b7f22
updated high-level slideset.
2016-10-01 01:42:20 -07:00
Raymond Knopp
4b77dda67b
some changes in pucchsim to remove warnings. sanity check in turbo_decoder.
2016-09-30 23:01:31 -07:00
Rohit Gupta
bd25e2d949
Merge branch 'enhancement-10-harmony' into enhancement-10-harmony-lts
2016-09-30 21:41:41 +02:00
Rohit Gupta
07db8e39b6
Merge branch 'enhancement-10-harmony' of gitlab.eurecom.fr:oai/openairinterface5g into enhancement-10-harmony
2016-09-30 21:41:14 +02:00
Rohit Gupta
7a1e8347c7
add help for debug option for build_oai
2016-09-30 21:41:00 +02:00
Florian Kaltenberger
f62063276a
timing measurement fixes
2016-09-30 16:23:49 +02:00
fnabet
2332290a0d
Merge branch 'develop1B' of https://gitlab.com/TCL_Communications/openairinterface5g into L2_Stabilization-22-BSR_fertilization
2016-09-30 15:55:40 +02:00
laurent
402bd21bd7
merge harmony
2016-09-30 14:40:39 +02:00
Fabrice Nabet
d02ee6cfe7
Merge branch '14-3gpp-alignement-l2' into 'develop1B'
...
UE L2 changes for 3GPP alignement
Closes #14
See merge request !3
2016-09-30 12:38:05 +00:00
laurent
55b3b262cf
Merge branch 'enhancement-10-harmony-lts' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony-lts
2016-09-30 12:35:01 +02:00
laurent
5822c850cb
small2
2016-09-30 12:34:57 +02:00
Laurent
5ea7253ff7
small update
2016-09-30 12:32:33 +02:00
Rohit Gupta
9f485ac5a9
minor fix to config files
2016-09-30 11:14:09 +02:00
hutch
c6cb8ed260
hotfix for eRRC
2016-09-30 11:10:13 +02:00
Rohit Gupta
51bf2ba535
recalibrate USRP config files
2016-09-29 12:55:09 +02:00
Rohit Gupta
5ca2d6f0a0
Merge branch 'develop' of gitlab.eurecom.fr:oai/openairinterface5g into develop
2016-09-29 12:08:23 +02:00
Rohit Gupta
2fc4e6eeeb
Merge branch 'enhancement-10-harmony' into develop
2016-09-29 11:41:22 +02:00
Raymond Knopp
cd22e926b3
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-28 13:33:04 -07:00
Rohit Gupta
6599d1c9c4
bug fixes for UE
2016-09-28 20:51:44 +02:00
Fabrice Nabet
4e0e0191be
Merge branch '8-bugfix-drb-lcid-map' into 'develop1B'
...
Resolve "OAI UE does not configure logical-channel ID and data radio bearer ID according to RRCConnectionReconfiguration message"
Closes #8
See merge request !2
2016-09-28 16:53:13 +00:00
fnabet
a5210e4f4f
UE L2 changes for 3GPP alignement
2016-09-28 17:36:07 +02:00
Rohit Gupta
8220c9e5ce
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-28 17:30:22 +02:00
hutch
2f00423218
update RCC config file for 5 MHz
2016-09-28 17:27:10 +02:00
Rohit Gupta
222519fbaa
Merge branch 'develop' of gitlab.eurecom.fr:oai/openairinterface5g into develop
2016-09-28 17:22:25 +02:00
Cedric Roux
1410b3f343
hotfix: fields DLSCH_DCI and ULSCH_DCI of UE_TEMPLATE had wrong size
...
The old value was 6, it should be 8 because those fields are
casted to 'struct DCI0_5MHz_FDD' and the like and those have
a size multiple of 32 bits, that is 4 or 8 bytes as of today.
(MAX_DCI_SIZE_BITS is 45, all the shifts, muls and adds lead
to a value of 8 after this commit and 6 before.)
The problem manifested itself with a 20MHz eNB. Push the traffic,
after a while the DL harq process 0 is not used anymore.
This is because DLSCH_DCI is directly followed by nb_rb in
the structure UE_TEMPLATE and setting a value for harq process 7
did overwrite nb_rb[0], putting much too big values in there,
leading to the scheduler to always refuse to reschedule because
the required RBs are impossibly huge (I saw values of 32744, 16384,
and others).
2016-09-28 16:51:28 +02:00
Rohit Gupta
dc2ec6fdef
changed logging level of GTPU errors
2016-09-28 15:21:13 +02:00
Rohit Gupta
1fdb28d16f
Merge branch 'enhancement-10-harmony' into develop
2016-09-28 15:14:19 +02:00
Rohit Gupta
9afa174548
minor fix to enable EXM
2016-09-28 15:13:00 +02:00
Cedric Roux
b0662e4bbe
update licensing information in remaining files
...
The text has been updated in all those files.
modified: README.txt
modified: cmake_targets/CMakeLists.txt
modified: cmake_targets/at_commands/CMakeLists.txt
modified: cmake_targets/autotests/core.py
modified: cmake_targets/autotests/log.py
modified: cmake_targets/autotests/openair.py
modified: cmake_targets/autotests/run_exec_autotests.bash
modified: cmake_targets/autotests/run_exec_lte-softmodem_tests.py
modified: cmake_targets/autotests/tools/configure_cots_bandrich_ue.py
modified: cmake_targets/autotests/tools/configure_cots_huaweiE398_ue.py
modified: cmake_targets/autotests/tools/configure_usrpb210.py
modified: cmake_targets/autotests/tools/find_usb_path.bash
modified: cmake_targets/autotests/tools/free_mem.bash
modified: cmake_targets/autotests/tools/iperf3_script
modified: cmake_targets/autotests/tools/iperf3_script_phone
modified: cmake_targets/autotests/tools/iperf_script
modified: cmake_targets/autotests/tools/iperf_script_phone
modified: cmake_targets/autotests/tools/lib_autotest.py
modified: cmake_targets/autotests/tools/search_repl.py
modified: cmake_targets/build_oai
modified: cmake_targets/tools/asn1tostruct.py
modified: cmake_targets/tools/build_helper
modified: cmake_targets/tools/build_test_epc_tools
modified: cmake_targets/tools/example_enb_exmimo_mme_hss.txt
modified: cmake_targets/tools/example_oaisim_enb_ue_mme_virtual.txt
modified: cmake_targets/tools/indent_source_code
modified: cmake_targets/tools/init_exmimo2
modified: cmake_targets/tools/init_nas_nos1
modified: cmake_targets/tools/perf_oai.bash
modified: cmake_targets/tools/run_enb_s1_exmimo
modified: cmake_targets/tools/run_enb_s1_usrp
modified: cmake_targets/tools/run_enb_ue_virt_noS1
modified: cmake_targets/tools/run_enb_ue_virt_s1
modified: openair2/DOCS/TEMPLATES/README/Readme.doxy
modified: openair2/DOCS/TEMPLATES/README/readme.txt
modified: openair2/Makefile
modified: openair2/UTIL/OCG/Readme.doxy
modified: openair2/UTIL/OCG/readme.txt
modified: openair2/UTIL/OSD/recep.php
modified: openair2/X2AP/MESSAGES/ASN1/asn1tostruct.py
modified: openair3/DOCS/DOXYGEN/Makefile.am
modified: openair3/DOCS/Latex/EPC/Makefile
modified: openair3/DOCS/Makefile.am
modified: openair3/GTPV1-U/Makefile.am
modified: openair3/GTPV1-U/Makefile.eNB
modified: openair3/NAS/TEST/AS_SIMULATOR/Makefile
modified: openair3/NAS/TEST/NETWORK/Makefile
modified: openair3/NAS/TEST/USER/Makefile
modified: openair3/NAS/TOOLS/Makefile
modified: openair3/NAS/UE/API/USER/Makefile
modified: openair3/NAS/UE/API/USER/tst/Makefile
modified: openair3/NAS/UE/API/USIM/Makefile
modified: openair3/S1AP/MESSAGES/ASN1/asn1tostruct.py
modified: openair3/TEST/Makefile.am
modified: targets/ARCH/EXMIMO/USERSPACE/OCTAVE/gpib_send.cc
modified: targets/ARCH/EXMIMO/USERSPACE/OCTAVE/oarf_config_exmimo.cc
modified: targets/ARCH/EXMIMO/USERSPACE/OCTAVE/oarf_get_frame.cc
modified: targets/ARCH/EXMIMO/USERSPACE/OCTAVE/oarf_get_num_detected_cards.cc
modified: targets/ARCH/EXMIMO/USERSPACE/OCTAVE/oarf_send_frame.cc
modified: targets/ARCH/EXMIMO/USERSPACE/OCTAVE/oarf_stop.cc
modified: targets/ARCH/EXMIMO/USERSPACE/OCTAVE/oarf_stop_without_reset.cc
modified: targets/PROJECTS/E-MBMS/build_all.bash
modified: targets/PROJECTS/E-MBMS/start_enb.bash
modified: targets/PROJECTS/E-MBMS/start_ue.bash
modified: targets/PROJECTS/E-MBMS/utils.bash
modified: targets/PROJECTS/GENERIC-LTE-EPC/interfaces.bash
modified: targets/PROJECTS/GENERIC-LTE-EPC/networks.bash
modified: targets/PROJECTS/GENERIC-LTE-EPC/start_enb_and_ue_virt.bash
modified: targets/PROJECTS/GENERIC-LTE-EPC/start_ue.bash
modified: targets/PROJECTS/GENERIC-LTE-EPC/utils.bash
modified: targets/PROJECTS/GENERIC-LTE-EPC/virtual_box.bash
modified: targets/SCRIPTS/install_asn1c_0.9.24.modified.bash
modified: targets/TEST/OAI/case01.py
modified: targets/TEST/OAI/case02.py
modified: targets/TEST/OAI/case03.py
modified: targets/TEST/OAI/case04.py
modified: targets/TEST/OAI/case05.py
modified: targets/TEST/OAI/case11.py
modified: targets/TEST/OAI/case12.py
modified: targets/TEST/OAI/case13.py
modified: targets/TEST/OAI/core.py
modified: targets/TEST/OAI/log.py
modified: targets/TEST/OAI/openair.py
modified: targets/TEST/OAI/test01.py
modified: targets/TEST/OAI/test02.py
modified: targets/TEST/PDCP/readme.txt
modified: targets/build_helper.bash
modified: targets/build_oai.bash
modified: targets/perf_oai.bash
2016-09-28 11:17:33 +02:00
Cedric Roux
972d0e612e
add README in the T tracer to clarify its licensing information
...
The T is released with the same license as the rest of OpenAirInterface,
of which it is an integral part.
2016-09-28 10:46:16 +02:00
Cedric Roux
74316f6b69
remove COPYING files
...
Most of them were the GPL.
It is useless to have a copy of the license in every
sub-directory.
From now on, there is only the LICENSE in the top
directory of the distribution.
deleted: common/utils/COPYING
deleted: common/utils/hashtable/COPYING
deleted: common/utils/itti/COPYING
deleted: common/utils/itti_analyzer/COPYING
deleted: common/utils/itti_analyzer/common/COPYING
deleted: common/utils/itti_analyzer/libbuffers/COPYING
deleted: common/utils/itti_analyzer/libparser/COPYING
deleted: common/utils/itti_analyzer/libresolver/COPYING
deleted: common/utils/itti_analyzer/libui/COPYING
deleted: openair1/COPYING
deleted: openair1/PHY/CODING/COPYING
deleted: openair1/PHY/CODING/TESTBENCH/COPYING
deleted: openair1/PHY/COPYING
deleted: openair1/PHY/INIT/COPYING
deleted: openair1/PHY/LTE_ESTIMATION/COPYING
deleted: openair1/PHY/LTE_REFSIG/COPYING
deleted: openair1/PHY/LTE_TRANSPORT/COPYING
deleted: openair1/PHY/MODULATION/COPYING
deleted: openair1/PHY/TOOLS/COPYING
deleted: openair1/SCHED/COPYING
deleted: openair1/SIMULATION/COPYING
deleted: openair1/SIMULATION/ETH_TRANSPORT/COPYING
deleted: openair1/SIMULATION/LTE_PHY/COPYING
deleted: openair1/SIMULATION/RF/COPYING
deleted: openair1/SIMULATION/TOOLS/COPYING
deleted: openair2/COMMON/COPYING
deleted: openair2/DOCS/TEMPLATES/CODE/COPYING
deleted: openair2/LAYER2/COPYING
deleted: openair2/LAYER2/MAC/COPYING
deleted: openair2/LAYER2/PDCP_v10.1.0/COPYING
deleted: openair2/LAYER2/RLC/AM_v9.3.0/COPYING
deleted: openair2/LAYER2/RLC/COPYING
deleted: openair2/LAYER2/RLC/TM_v9.3.0/COPYING
deleted: openair2/LAYER2/RLC/UM_v9.3.0/COPYING
deleted: openair2/NETWORK_DRIVER/LITE/COPYING
deleted: openair2/NETWORK_DRIVER/MESH/COPYING
deleted: openair2/NETWORK_DRIVER/UE_IP/COPYING
deleted: openair2/PHY_INTERFACE/COPYING
deleted: openair2/RRC/L2_INTERFACE/COPYING
deleted: openair2/RRC/LITE/COPYING
deleted: openair2/RRC/LITE/MESSAGES/COPYING
deleted: openair2/RRC/NAS/COPYING
deleted: openair2/RRM_4_RRC_LITE/COPYING
deleted: openair2/RRM_4_RRC_LITE/src/COPYING
deleted: openair2/RRM_4_RRC_LITE/src/radio_resources/COPYING
deleted: openair2/UTIL/BIGPHYS/COPYING
deleted: openair2/UTIL/CLI/COPYING
deleted: openair2/UTIL/FIFO/COPYING
deleted: openair2/UTIL/LISTS/COPYING
deleted: openair2/UTIL/LOG/COPYING
deleted: openair2/UTIL/MATH/COPYING
deleted: openair2/UTIL/MEM/COPYING
deleted: openair2/UTIL/OCG/COPYING
deleted: openair2/UTIL/OMG/COPYING
deleted: openair2/UTIL/OMV/COPYING
deleted: openair2/UTIL/OPT/COPYING
deleted: openair2/UTIL/OSA/COPYING
deleted: openair2/UTIL/OSD/COPYING
deleted: openair2/UTIL/OTG/COPYING
deleted: openair2/UTIL/SCTP/COPYING
deleted: openair2/UTIL/TIMER/COPYING
deleted: openair2/UTIL/TRACE/COPYING
deleted: openair2/X2AP/COPYING
deleted: openair3/COPYING
deleted: openair3/DOCS/COPYING
deleted: openair3/DOCS/DOXYGEN/COPYING
deleted: openair3/DOCS/Latex/COPYING
deleted: openair3/DOCS/Latex/DefaultBearer/COPYING
deleted: openair3/DOCS/Latex/EPC/COPYING
deleted: openair3/NAS/COMMON/API/NETWORK/COPYING
deleted: openair3/NAS/COMMON/COPYING
deleted: openair3/NAS/COMMON/EMM/MSG/COPYING
deleted: openair3/NAS/COMMON/ESM/MSG/COPYING
deleted: openair3/NAS/COMMON/IES/COPYING
deleted: openair3/NAS/COMMON/UTIL/COPYING
deleted: openair3/NAS/COPYING
deleted: openair3/NAS/TEST/AS_SIMULATOR/COPYING
deleted: openair3/NAS/TEST/COPYING
deleted: openair3/NAS/TEST/MSC/COPYING
deleted: openair3/NAS/TEST/NETWORK/COPYING
deleted: openair3/NAS/TEST/USER/COPYING
deleted: openair3/NAS/TOOLS/COPYING
deleted: openair3/NAS/UE/API/USER/COPYING
deleted: openair3/NAS/UE/API/USIM/COPYING
deleted: openair3/NAS/UE/EMM/SAP/COPYING
deleted: openair3/NAS/UE/ESM/SAP/COPYING
deleted: openair3/S1AP/COPYING
deleted: openair3/S1AP/MESSAGES/ASN1/COPYING
deleted: openair3/S1AP/MESSAGES/ASN1/R10.5/COPYING
deleted: openair3/S1AP/MESSAGES/ASN1/R8.10/COPYING
deleted: openair3/S1AP/MESSAGES/ASN1/R9.8/COPYING
deleted: openair3/S1AP/MESSAGES/COPYING
deleted: openair3/SCTP/COPYING
deleted: openair3/SECU/COPYING
deleted: openair3/TEST/COPYING
deleted: openair3/UTILS/COPYING
deleted: targets/ARCH/COMMON/COPYING
deleted: targets/ARCH/ETHERNET/USERSPACE/LIB/COPYING
deleted: targets/ARCH/EXMIMO/DEFS/COPYING
deleted: targets/ARCH/EXMIMO/DRIVER/eurecom/COPYING
deleted: targets/ARCH/EXMIMO/DRIVER/exmimo3/COPYING
deleted: targets/ARCH/EXMIMO/DRIVER/telecomparistech/COPYING
deleted: targets/ARCH/EXMIMO/USERSPACE/LIB/COPYING
deleted: targets/ARCH/EXMIMO/USERSPACE/OAI_FW_INIT/COPYING
deleted: targets/ARCH/EXMIMO/USERSPACE/OCTAVE/COPYING
deleted: targets/ARCH/USRP/USERSPACE/LIB/COPYING
deleted: targets/COMMON/COPYING
deleted: targets/COPYING
deleted: targets/PROJECTS/CENTOS-LTE-EPC-INTEGRATION/COPYING
deleted: targets/PROJECTS/COPYING
deleted: targets/PROJECTS/GENERIC-LTE-EPC/COPYING
deleted: targets/RT/USER/COPYING
deleted: targets/SIMU/PROC/COPYING
deleted: targets/SIMU/USER/COPYING
2016-09-28 10:45:02 +02:00
Rohit Gupta
8a2faa1cb3
change the build script to oai/ssh package
2016-09-28 06:31:29 +02:00
Raymond Knopp
1f77142158
addition of dfts of size 18432 for PRACH TX/RX with 23.04 Ms/s sampling (15/20 MHz BW).
2016-09-27 10:47:56 -07:00
Cedric Roux
5ab5c3ebbd
delete bsearch.c and bsearch.h from source tree
...
they are not referenced in CMakeLists.txt (so says grep)
2016-09-27 17:01:54 +02:00
Cedric Roux
db3c2b4d71
add licensing info at top of source files
...
only .c, .h and .cpp processed.
Changes to be committed:
modified: common/utils/asn1_conversions.h
modified: common/utils/assertions.h
modified: common/utils/itti/assertions.h
modified: common/utils/itti/backtrace.c
modified: common/utils/itti/backtrace.h
modified: common/utils/itti/intertask_interface.c
modified: common/utils/itti/intertask_interface.h
modified: common/utils/itti/intertask_interface_dump.c
modified: common/utils/itti/intertask_interface_dump.h
modified: common/utils/itti/intertask_interface_init.h
modified: common/utils/itti/intertask_interface_types.h
modified: common/utils/itti/intertask_messages_def.h
modified: common/utils/itti/intertask_messages_types.h
modified: common/utils/itti/itti_types.h
modified: common/utils/itti/memory_pools.c
modified: common/utils/itti/memory_pools.h
modified: common/utils/itti/messages_def.h
modified: common/utils/itti/messages_types.h
modified: common/utils/itti/signals.c
modified: common/utils/itti/signals.h
modified: common/utils/itti/tasks_def.h
modified: common/utils/itti/timer.c
modified: common/utils/itti/timer.h
modified: common/utils/itti/timer_messages_def.h
modified: common/utils/itti/timer_messages_types.h
modified: common/utils/itti_analyzer/common/itti_types.h
modified: common/utils/itti_analyzer/common/logs.h
modified: common/utils/itti_analyzer/common/rc.h
modified: common/utils/itti_analyzer/itti_analyzer.c
modified: common/utils/itti_analyzer/libbuffers/buffers.c
modified: common/utils/itti_analyzer/libbuffers/buffers.h
modified: common/utils/itti_analyzer/libbuffers/file.c
modified: common/utils/itti_analyzer/libbuffers/file.h
modified: common/utils/itti_analyzer/libbuffers/socket.c
modified: common/utils/itti_analyzer/libbuffers/socket.h
modified: common/utils/itti_analyzer/libparser/array_type.c
modified: common/utils/itti_analyzer/libparser/array_type.h
modified: common/utils/itti_analyzer/libparser/enum_type.c
modified: common/utils/itti_analyzer/libparser/enum_type.h
modified: common/utils/itti_analyzer/libparser/enum_value_type.c
modified: common/utils/itti_analyzer/libparser/enum_value_type.h
modified: common/utils/itti_analyzer/libparser/field_type.c
modified: common/utils/itti_analyzer/libparser/field_type.h
modified: common/utils/itti_analyzer/libparser/file_type.c
modified: common/utils/itti_analyzer/libparser/file_type.h
modified: common/utils/itti_analyzer/libparser/fundamental_type.c
modified: common/utils/itti_analyzer/libparser/fundamental_type.h
modified: common/utils/itti_analyzer/libparser/intertask_contexts.h
modified: common/utils/itti_analyzer/libparser/pointer_type.c
modified: common/utils/itti_analyzer/libparser/pointer_type.h
modified: common/utils/itti_analyzer/libparser/reference_type.c
modified: common/utils/itti_analyzer/libparser/reference_type.h
modified: common/utils/itti_analyzer/libparser/struct_type.c
modified: common/utils/itti_analyzer/libparser/struct_type.h
modified: common/utils/itti_analyzer/libparser/typedef_type.c
modified: common/utils/itti_analyzer/libparser/typedef_type.h
modified: common/utils/itti_analyzer/libparser/types.c
modified: common/utils/itti_analyzer/libparser/types.h
modified: common/utils/itti_analyzer/libparser/union_type.c
modified: common/utils/itti_analyzer/libparser/union_type.h
modified: common/utils/itti_analyzer/libparser/xml_parse.c
modified: common/utils/itti_analyzer/libparser/xml_parse.h
modified: common/utils/itti_analyzer/libresolver/locate_root.c
modified: common/utils/itti_analyzer/libresolver/locate_root.h
modified: common/utils/itti_analyzer/libresolver/resolvers.c
modified: common/utils/itti_analyzer/libresolver/resolvers.h
modified: common/utils/itti_analyzer/libui/ui_callbacks.c
modified: common/utils/itti_analyzer/libui/ui_callbacks.h
modified: common/utils/itti_analyzer/libui/ui_filters.c
modified: common/utils/itti_analyzer/libui/ui_filters.h
modified: common/utils/itti_analyzer/libui/ui_interface.c
modified: common/utils/itti_analyzer/libui/ui_interface.h
modified: common/utils/itti_analyzer/libui/ui_main_screen.c
modified: common/utils/itti_analyzer/libui/ui_main_screen.h
modified: common/utils/itti_analyzer/libui/ui_menu_bar.c
modified: common/utils/itti_analyzer/libui/ui_menu_bar.h
modified: common/utils/itti_analyzer/libui/ui_notebook.c
modified: common/utils/itti_analyzer/libui/ui_notebook.h
modified: common/utils/itti_analyzer/libui/ui_notif_dlg.c
modified: common/utils/itti_analyzer/libui/ui_notif_dlg.h
modified: common/utils/itti_analyzer/libui/ui_notifications.c
modified: common/utils/itti_analyzer/libui/ui_notifications.h
modified: common/utils/itti_analyzer/libui/ui_signal_dissect_view.c
modified: common/utils/itti_analyzer/libui/ui_signal_dissect_view.h
modified: common/utils/itti_analyzer/libui/ui_tree_view.c
modified: common/utils/itti_analyzer/libui/ui_tree_view.h
modified: common/utils/msc/msc.c
modified: common/utils/msc/msc.h
modified: openair1/PHY/CODING/3gpplte.c
modified: openair1/PHY/CODING/3gpplte_sse.c
modified: openair1/PHY/CODING/3gpplte_turbo_decoder.c
modified: openair1/PHY/CODING/3gpplte_turbo_decoder_avx2_16bit.c
modified: openair1/PHY/CODING/3gpplte_turbo_decoder_sse.c
modified: openair1/PHY/CODING/3gpplte_turbo_decoder_sse_16bit.c
modified: openair1/PHY/CODING/3gpplte_turbo_decoder_sse_8bit.c
modified: openair1/PHY/CODING/TESTBENCH/ltetest.c
modified: openair1/PHY/CODING/TESTBENCH/pdcch_test.c
modified: openair1/PHY/CODING/TESTBENCH/viterbi_test.c
modified: openair1/PHY/CODING/ccoding_byte.c
modified: openair1/PHY/CODING/ccoding_byte_lte.c
modified: openair1/PHY/CODING/crc_byte.c
modified: openair1/PHY/CODING/defs.h
modified: openair1/PHY/CODING/extern.h
modified: openair1/PHY/CODING/extern_3GPPinterleaver.h
modified: openair1/PHY/CODING/lte_interleaver.h
modified: openair1/PHY/CODING/lte_interleaver2.h
modified: openair1/PHY/CODING/lte_interleaver_inline.h
modified: openair1/PHY/CODING/lte_rate_matching.c
modified: openair1/PHY/CODING/lte_segmentation.c
modified: openair1/PHY/CODING/rate_matching.c
modified: openair1/PHY/CODING/scrambler.h
modified: openair1/PHY/CODING/vars.h
modified: openair1/PHY/CODING/viterbi.c
modified: openair1/PHY/CODING/viterbi_lte.c
modified: openair1/PHY/INIT/defs.h
modified: openair1/PHY/INIT/extern.h
modified: openair1/PHY/INIT/init_top.c
modified: openair1/PHY/INIT/lte_init.c
modified: openair1/PHY/INIT/lte_param_init.c
modified: openair1/PHY/INIT/lte_parms.c
modified: openair1/PHY/INIT/vars.h
modified: openair1/PHY/LTE_ESTIMATION/adjust_gain.c
modified: openair1/PHY/LTE_ESTIMATION/defs.h
modified: openair1/PHY/LTE_ESTIMATION/extern.h
modified: openair1/PHY/LTE_ESTIMATION/filt96_32.h
modified: openair1/PHY/LTE_ESTIMATION/freq_equalization.c
modified: openair1/PHY/LTE_ESTIMATION/lte_adjust_sync.c
modified: openair1/PHY/LTE_ESTIMATION/lte_dl_channel_estimation.c
modified: openair1/PHY/LTE_ESTIMATION/lte_dl_channel_estimation_emos.c
modified: openair1/PHY/LTE_ESTIMATION/lte_dl_mbsfn_channel_estimation.c
modified: openair1/PHY/LTE_ESTIMATION/lte_eNB_measurements.c
modified: openair1/PHY/LTE_ESTIMATION/lte_est_freq_offset.c
modified: openair1/PHY/LTE_ESTIMATION/lte_sync_time.c
modified: openair1/PHY/LTE_ESTIMATION/lte_sync_timefreq.c
modified: openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
modified: openair1/PHY/LTE_ESTIMATION/lte_ul_channel_estimation.c
modified: openair1/PHY/LTE_ESTIMATION/pss6144.h
modified: openair1/PHY/LTE_ESTIMATION/vars.h
modified: openair1/PHY/LTE_REFSIG/defs.h
modified: openair1/PHY/LTE_REFSIG/lte_dl_cell_spec.c
modified: openair1/PHY/LTE_REFSIG/lte_dl_mbsfn.c
modified: openair1/PHY/LTE_REFSIG/lte_dl_uespec.c
modified: openair1/PHY/LTE_REFSIG/lte_gold.c
modified: openair1/PHY/LTE_REFSIG/lte_gold_mbsfn.c
modified: openair1/PHY/LTE_REFSIG/lte_ul_ref.c
modified: openair1/PHY/LTE_REFSIG/mod_table.h
modified: openair1/PHY/LTE_REFSIG/primary_synch.h
modified: openair1/PHY/LTE_TRANSPORT/dci.c
modified: openair1/PHY/LTE_TRANSPORT/dci.h
modified: openair1/PHY/LTE_TRANSPORT/dci_tools.c
modified: openair1/PHY/LTE_TRANSPORT/defs.h
modified: openair1/PHY/LTE_TRANSPORT/dlsch_coding.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_decoding.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_modulation.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_scrambling.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_tbs.h
modified: openair1/PHY/LTE_TRANSPORT/dlsch_tbs_full.h
modified: openair1/PHY/LTE_TRANSPORT/drs_modulation.c
modified: openair1/PHY/LTE_TRANSPORT/extern.h
modified: openair1/PHY/LTE_TRANSPORT/group_hopping.c
modified: openair1/PHY/LTE_TRANSPORT/if4_tools.c
modified: openair1/PHY/LTE_TRANSPORT/if4_tools.h
modified: openair1/PHY/LTE_TRANSPORT/if5_tools.c
modified: openair1/PHY/LTE_TRANSPORT/if5_tools.h
modified: openair1/PHY/LTE_TRANSPORT/initial_sync.c
modified: openair1/PHY/LTE_TRANSPORT/lte_mcs.c
modified: openair1/PHY/LTE_TRANSPORT/mcs_tbs_tools.h
modified: openair1/PHY/LTE_TRANSPORT/pbch.c
modified: openair1/PHY/LTE_TRANSPORT/pcfich.c
modified: openair1/PHY/LTE_TRANSPORT/pch.c
modified: openair1/PHY/LTE_TRANSPORT/phich.c
modified: openair1/PHY/LTE_TRANSPORT/pilots.c
modified: openair1/PHY/LTE_TRANSPORT/pilots_mbsfn.c
modified: openair1/PHY/LTE_TRANSPORT/pmch.c
modified: openair1/PHY/LTE_TRANSPORT/power_control.c
modified: openair1/PHY/LTE_TRANSPORT/prach.c
modified: openair1/PHY/LTE_TRANSPORT/prach.h
modified: openair1/PHY/LTE_TRANSPORT/print_stats.c
modified: openair1/PHY/LTE_TRANSPORT/proto.h
modified: openair1/PHY/LTE_TRANSPORT/pss.c
modified: openair1/PHY/LTE_TRANSPORT/pucch.c
modified: openair1/PHY/LTE_TRANSPORT/rar_tools.c
modified: openair1/PHY/LTE_TRANSPORT/srs_modulation.c
modified: openair1/PHY/LTE_TRANSPORT/sss.c
modified: openair1/PHY/LTE_TRANSPORT/sss.h
modified: openair1/PHY/LTE_TRANSPORT/uci.h
modified: openair1/PHY/LTE_TRANSPORT/uci_tools.c
modified: openair1/PHY/LTE_TRANSPORT/ulsch_coding.c
modified: openair1/PHY/LTE_TRANSPORT/ulsch_decoding.c
modified: openair1/PHY/LTE_TRANSPORT/ulsch_demodulation.c
modified: openair1/PHY/LTE_TRANSPORT/ulsch_modulation.c
modified: openair1/PHY/LTE_TRANSPORT/vars.h
modified: openair1/PHY/MODULATION/defs.h
modified: openair1/PHY/MODULATION/extern.h
modified: openair1/PHY/MODULATION/kHz_7_5.h
modified: openair1/PHY/MODULATION/ofdm_mod.c
modified: openair1/PHY/MODULATION/prach625Hz.h
modified: openair1/PHY/MODULATION/slot_fep.c
modified: openair1/PHY/MODULATION/slot_fep_mbsfn.c
modified: openair1/PHY/MODULATION/slot_fep_ul.c
modified: openair1/PHY/MODULATION/ul_7_5_kHz.c
modified: openair1/PHY/MODULATION/vars.h
modified: openair1/PHY/TOOLS/8bit_rxdemux.c
modified: openair1/PHY/TOOLS/8bit_txmux.c
modified: openair1/PHY/TOOLS/alaw_lut.h
modified: openair1/PHY/TOOLS/angle.c
modified: openair1/PHY/TOOLS/cadd_sv.c
modified: openair1/PHY/TOOLS/cadd_vv.c
modified: openair1/PHY/TOOLS/cdot_prod.c
modified: openair1/PHY/TOOLS/cmult_sv.c
modified: openair1/PHY/TOOLS/cmult_vv.c
modified: openair1/PHY/TOOLS/costable.h
modified: openair1/PHY/TOOLS/dB_routines.c
modified: openair1/PHY/TOOLS/dB_routines.h
modified: openair1/PHY/TOOLS/defs.h
modified: openair1/PHY/TOOLS/extern.h
modified: openair1/PHY/TOOLS/file_output.c
modified: openair1/PHY/TOOLS/invSqrt.c
modified: openair1/PHY/TOOLS/log2_approx.c
modified: openair1/PHY/TOOLS/lte_dfts.c
modified: openair1/PHY/TOOLS/lte_phy_scope.c
modified: openair1/PHY/TOOLS/lte_phy_scope.h
modified: openair1/PHY/TOOLS/lut.c
modified: openair1/PHY/TOOLS/memory_routines.c
modified: openair1/PHY/TOOLS/signal_energy.c
modified: openair1/PHY/TOOLS/smbv.c
modified: openair1/PHY/TOOLS/smbv.h
modified: openair1/PHY/TOOLS/sqrt.c
modified: openair1/PHY/TOOLS/time_meas.c
modified: openair1/PHY/TOOLS/time_meas.h
modified: openair1/PHY/TOOLS/twiddle12288.h
modified: openair1/PHY/TOOLS/twiddle1536.h
modified: openair1/PHY/TOOLS/twiddle24576.h
modified: openair1/PHY/TOOLS/twiddle6144.h
modified: openair1/PHY/TOOLS/twiddles4096.h
modified: openair1/PHY/TOOLS/twiddles8192.h
modified: openair1/PHY/TOOLS/vars.h
modified: openair1/PHY/defs.h
modified: openair1/PHY/extern.h
modified: openair1/PHY/impl_defs_lte.h
modified: openair1/PHY/impl_defs_top.h
modified: openair1/PHY/sse_intrin.h
modified: openair1/PHY/types.h
modified: openair1/PHY/vars.h
modified: openair1/SCHED/defs.h
modified: openair1/SCHED/extern.h
modified: openair1/SCHED/phy_mac_stub.c
modified: openair1/SCHED/phy_procedures_emos.h
modified: openair1/SCHED/phy_procedures_lte_common.c
modified: openair1/SCHED/phy_procedures_lte_eNb.c
modified: openair1/SCHED/phy_procedures_lte_ue.c
modified: openair1/SCHED/pucch_pc.c
modified: openair1/SCHED/pusch_pc.c
modified: openair1/SCHED/rt_compat.h
modified: openair1/SCHED/vars.h
modified: openair1/SIMULATION/ETH_TRANSPORT/bypass_session_layer.c
modified: openair1/SIMULATION/ETH_TRANSPORT/defs.h
modified: openair1/SIMULATION/ETH_TRANSPORT/emu_transport.c
modified: openair1/SIMULATION/ETH_TRANSPORT/extern.h
modified: openair1/SIMULATION/ETH_TRANSPORT/multicast_link.c
modified: openair1/SIMULATION/ETH_TRANSPORT/multicast_link.h
modified: openair1/SIMULATION/ETH_TRANSPORT/netlink_init.c
modified: openair1/SIMULATION/ETH_TRANSPORT/pgm_link.c
modified: openair1/SIMULATION/ETH_TRANSPORT/pgm_link.h
modified: openair1/SIMULATION/ETH_TRANSPORT/proto.h
modified: openair1/SIMULATION/ETH_TRANSPORT/socket.c
modified: openair1/SIMULATION/ETH_TRANSPORT/socket.h
modified: openair1/SIMULATION/ETH_TRANSPORT/vars.h
modified: openair1/SIMULATION/LTE_PHY/LTE_Configuration.c
modified: openair1/SIMULATION/LTE_PHY/LTE_Configuration.h
modified: openair1/SIMULATION/LTE_PHY/dlsim.c
modified: openair1/SIMULATION/LTE_PHY/framegen.c
modified: openair1/SIMULATION/LTE_PHY/gpib_send.c
modified: openair1/SIMULATION/LTE_PHY/gpib_send.h
modified: openair1/SIMULATION/LTE_PHY/mbmssim.c
modified: openair1/SIMULATION/LTE_PHY/pbchsim.c
modified: openair1/SIMULATION/LTE_PHY/pdcchsim.c
modified: openair1/SIMULATION/LTE_PHY/prachsim.c
modified: openair1/SIMULATION/LTE_PHY/pucchsignalgegerator.h
modified: openair1/SIMULATION/LTE_PHY/pucchsignalgenerator.c
modified: openair1/SIMULATION/LTE_PHY/pucchsim.c
modified: openair1/SIMULATION/LTE_PHY/scansim.c
modified: openair1/SIMULATION/LTE_PHY/signalanalyzer.c
modified: openair1/SIMULATION/LTE_PHY/signalanalyzer.h
modified: openair1/SIMULATION/LTE_PHY/syncsim.c
modified: openair1/SIMULATION/LTE_PHY/test.c
modified: openair1/SIMULATION/LTE_PHY/ulsignalgenerator.c
modified: openair1/SIMULATION/LTE_PHY/ulsignalgenerator.h
modified: openair1/SIMULATION/LTE_PHY/ulsim.c
modified: openair1/SIMULATION/LTE_PHY/ulsim2.c
modified: openair1/SIMULATION/LTE_PHY/unitary_defs.h
modified: openair1/SIMULATION/RF/adc.c
modified: openair1/SIMULATION/RF/dac.c
modified: openair1/SIMULATION/RF/defs.h
modified: openair1/SIMULATION/RF/rf.c
modified: openair1/SIMULATION/TOOLS/abstraction.c
modified: openair1/SIMULATION/TOOLS/ch_desc_proto.c
modified: openair1/SIMULATION/TOOLS/defs.h
modified: openair1/SIMULATION/TOOLS/gauss.c
modified: openair1/SIMULATION/TOOLS/llr_quantization.c
modified: openair1/SIMULATION/TOOLS/multipath_channel.c
modified: openair1/SIMULATION/TOOLS/multipath_tv_channel.c
modified: openair1/SIMULATION/TOOLS/random_channel.c
modified: openair1/SIMULATION/TOOLS/rangen_double.c
modified: openair1/SIMULATION/TOOLS/scm_corrmat.h
modified: openair1/SIMULATION/TOOLS/taus.c
modified: openair2/COMMON/as_message.h
modified: openair2/COMMON/commonDef.h
modified: openair2/COMMON/gtpv1_u_messages_def.h
modified: openair2/COMMON/gtpv1_u_messages_types.h
modified: openair2/COMMON/intertask_interface_conf.h
modified: openair2/COMMON/mac_messages_def.h
modified: openair2/COMMON/mac_messages_types.h
modified: openair2/COMMON/mac_primitives.h
modified: openair2/COMMON/mac_rlc_primitives.h
modified: openair2/COMMON/mac_rrc_primitives.h
modified: openair2/COMMON/messages_def.h
modified: openair2/COMMON/messages_types.h
modified: openair2/COMMON/nas_messages_def.h
modified: openair2/COMMON/nas_messages_types.h
modified: openair2/COMMON/networkDef.h
modified: openair2/COMMON/openair_defs.h
modified: openair2/COMMON/openair_types.h
modified: openair2/COMMON/pdcp_messages_def.h
modified: openair2/COMMON/pdcp_messages_types.h
modified: openair2/COMMON/phy_messages_def.h
modified: openair2/COMMON/phy_messages_types.h
modified: openair2/COMMON/platform_constants.h
modified: openair2/COMMON/platform_types.h
modified: openair2/COMMON/ral_messages_def.h
modified: openair2/COMMON/ral_messages_types.h
modified: openair2/COMMON/rlc_messages_def.h
modified: openair2/COMMON/rlc_messages_types.h
modified: openair2/COMMON/rrc_messages_def.h
modified: openair2/COMMON/rrc_messages_types.h
modified: openair2/COMMON/rrm_config_structs.h
modified: openair2/COMMON/rrm_constants.h
modified: openair2/COMMON/rtos_header.h
modified: openair2/COMMON/s1ap_messages_def.h
modified: openair2/COMMON/s1ap_messages_types.h
modified: openair2/COMMON/sctp_messages_def.h
modified: openair2/COMMON/sctp_messages_types.h
modified: openair2/COMMON/tasks_def.h
modified: openair2/COMMON/udp_messages_def.h
modified: openair2/COMMON/udp_messages_types.h
modified: openair2/COMMON/x2ap_messages_def.h
modified: openair2/COMMON/x2ap_messages_types.h
modified: openair2/DOCS/TEMPLATES/CODE/example_doxy.h
modified: openair2/ENB_APP/enb_app.c
modified: openair2/ENB_APP/enb_app.h
modified: openair2/ENB_APP/enb_config.c
modified: openair2/ENB_APP/enb_config.h
modified: openair2/LAYER2/MAC/config.c
modified: openair2/LAYER2/MAC/defs.h
modified: openair2/LAYER2/MAC/eNB_scheduler.c
modified: openair2/LAYER2/MAC/eNB_scheduler_RA.c
modified: openair2/LAYER2/MAC/eNB_scheduler_bch.c
modified: openair2/LAYER2/MAC/eNB_scheduler_dlsch.c
modified: openair2/LAYER2/MAC/eNB_scheduler_mch.c
modified: openair2/LAYER2/MAC/eNB_scheduler_primitives.c
modified: openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
modified: openair2/LAYER2/MAC/extern.h
modified: openair2/LAYER2/MAC/l1_helpers.c
modified: openair2/LAYER2/MAC/lte_transport_init.c
modified: openair2/LAYER2/MAC/main.c
modified: openair2/LAYER2/MAC/openair2_proc.c
modified: openair2/LAYER2/MAC/pre_processor.c
modified: openair2/LAYER2/MAC/proto.h
modified: openair2/LAYER2/MAC/ra_procedures.c
modified: openair2/LAYER2/MAC/rar_tools.c
modified: openair2/LAYER2/MAC/ue_procedures.c
modified: openair2/LAYER2/MAC/vars.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_control_primitive.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_control_primitives_proto_extern.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_netlink.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_primitives.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_primitives.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_proto_extern.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_security.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_sequence_manager.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_sequence_manager.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_thread.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_util.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_util.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_constants.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_entity.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_in_sdu.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_in_sdu.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_init.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_init.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_proto_extern.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_reassembly.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_reassembly.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_receiver.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_receiver.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_retransmit.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_retransmit.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_rx_list.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_rx_list.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_segment.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_segment.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_segments_holes.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_segments_holes.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_status_report.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_status_report.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_structs.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_test.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_test.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_poll_retransmit.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_poll_retransmit.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_reordering.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_reordering.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_status_prohibit.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_status_prohibit.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_windows.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_windows.h
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm.c
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm.h
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm_entity.h
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm_init.c
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm_init.h
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm_structs.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_constants.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_control_primitives.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_control_primitives.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_dar.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_dar.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_entity.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_fsm.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_fsm.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_reassembly.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_reassembly.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_receiver.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_receiver.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_segment.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_segment.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_structs.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_test.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_test.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_very_simple_test.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_very_simple_test.h
modified: openair2/LAYER2/RLC/mac_primitives.h
modified: openair2/LAYER2/RLC/rlc.c
modified: openair2/LAYER2/RLC/rlc.h
modified: openair2/LAYER2/RLC/rlc_def.h
modified: openair2/LAYER2/RLC/rlc_def_lte.h
modified: openair2/LAYER2/RLC/rlc_mac.c
modified: openair2/LAYER2/RLC/rlc_mpls.c
modified: openair2/LAYER2/RLC/rlc_primitives.h
modified: openair2/LAYER2/RLC/rlc_rrc.c
modified: openair2/LAYER2/layer2_top.c
modified: openair2/LAYER2/openair2_proc.c
modified: openair2/LAYER2/register.c
modified: openair2/LAYER2/register.h
modified: openair2/NAS/DRIVER/CELLULAR/CTL_TOOL/nascell_ioctl.c
modified: openair2/NAS/DRIVER/CELLULAR/CTL_TOOL/nascell_ioctl.h
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_ascontrol.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_classifier.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_common.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_constant.h
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_device.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_iocontrol.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_iocontrol.h
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_netlink.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_proto.h
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_sap.h
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_tool.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_variables.h
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_ascontrol.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_classifier.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_common.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_constant.h
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_device.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_iocontrol.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_iocontrol.h
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_netlink.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_proto.h
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_sap.h
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_tool.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_variables.h
modified: openair2/NAS/DRIVER/CELLULAR/NETLTEST/netltest.c
modified: openair2/NAS/DRIVER/CELLULAR/NETLTEST/nettestPDCP.c
modified: openair2/NAS/SIMU_CELLULAR/nas_simu_proto.h
modified: openair2/NAS/SIMU_CELLULAR/nasrg_simu_meas.c
modified: openair2/NAS/SIMU_CELLULAR/rrm_fifo_standalone.c
modified: openair2/NAS/nas_ue_task.h
modified: openair2/NETWORK_DRIVER/LITE/RB_TOOL/rb_tool.c
modified: openair2/NETWORK_DRIVER/LITE/classifier.c
modified: openair2/NETWORK_DRIVER/LITE/common.c
modified: openair2/NETWORK_DRIVER/LITE/constant.h
modified: openair2/NETWORK_DRIVER/LITE/device.c
modified: openair2/NETWORK_DRIVER/LITE/ioctl.c
modified: openair2/NETWORK_DRIVER/LITE/ioctl.h
modified: openair2/NETWORK_DRIVER/LITE/local.h
modified: openair2/NETWORK_DRIVER/LITE/netlink.c
modified: openair2/NETWORK_DRIVER/LITE/proto_extern.h
modified: openair2/NETWORK_DRIVER/LITE/sap.h
modified: openair2/NETWORK_DRIVER/LITE/tool.c
modified: openair2/NETWORK_DRIVER/MESH/RB_TOOL/rb_tool.c
modified: openair2/NETWORK_DRIVER/MESH/TESTBENCH/testbench.c
modified: openair2/NETWORK_DRIVER/MESH/classifier.c
modified: openair2/NETWORK_DRIVER/MESH/common.c
modified: openair2/NETWORK_DRIVER/MESH/constant.h
modified: openair2/NETWORK_DRIVER/MESH/device.c
modified: openair2/NETWORK_DRIVER/MESH/ioctl.c
modified: openair2/NETWORK_DRIVER/MESH/ioctl.h
modified: openair2/NETWORK_DRIVER/MESH/local.h
modified: openair2/NETWORK_DRIVER/MESH/mesh.c
modified: openair2/NETWORK_DRIVER/MESH/netlink.c
modified: openair2/NETWORK_DRIVER/MESH/proto_extern.h
modified: openair2/NETWORK_DRIVER/MESH/rrc_nas_primitives.h
modified: openair2/NETWORK_DRIVER/MESH/sap.h
modified: openair2/NETWORK_DRIVER/MESH/tool.c
modified: openair2/NETWORK_DRIVER/UE_IP/common.c
modified: openair2/NETWORK_DRIVER/UE_IP/constant.h
modified: openair2/NETWORK_DRIVER/UE_IP/device.c
modified: openair2/NETWORK_DRIVER/UE_IP/local.h
modified: openair2/NETWORK_DRIVER/UE_IP/netlink.c
modified: openair2/NETWORK_DRIVER/UE_IP/proto_extern.h
modified: openair2/NETWORK_DRIVER/UE_IP/sap.h
modified: openair2/PHY_INTERFACE/defs.h
modified: openair2/PHY_INTERFACE/extern.h
modified: openair2/PHY_INTERFACE/mac_phy_primitives.c
modified: openair2/PHY_INTERFACE/mac_phy_primitives.h
modified: openair2/PHY_INTERFACE/vars.h
modified: openair2/RRC/L2_INTERFACE/openair_rrc_L2_interface.c
modified: openair2/RRC/L2_INTERFACE/openair_rrc_L2_interface.h
modified: openair2/RRC/LITE/L2_interface.c
modified: openair2/RRC/LITE/MESSAGES/asn1_msg.c
modified: openair2/RRC/LITE/MESSAGES/asn1_msg.h
modified: openair2/RRC/LITE/MESSAGES/rtai_mem.c
modified: openair2/RRC/LITE/MESSAGES/rtai_mem.h
modified: openair2/RRC/LITE/defs.h
modified: openair2/RRC/LITE/extern.h
modified: openair2/RRC/LITE/mesh_top.c
modified: openair2/RRC/LITE/plmn_data.h
modified: openair2/RRC/LITE/proto.h
modified: openair2/RRC/LITE/rrc_2_rrm_msg.c
modified: openair2/RRC/LITE/rrc_UE.c
modified: openair2/RRC/LITE/rrc_UE_ral.c
modified: openair2/RRC/LITE/rrc_UE_ral.h
modified: openair2/RRC/LITE/rrc_common.c
modified: openair2/RRC/LITE/rrc_config.c
modified: openair2/RRC/LITE/rrc_eNB.c
modified: openair2/RRC/LITE/rrc_eNB_GTPV1U.c
modified: openair2/RRC/LITE/rrc_eNB_GTPV1U.h
modified: openair2/RRC/LITE/rrc_eNB_S1AP.c
modified: openair2/RRC/LITE/rrc_eNB_S1AP.h
modified: openair2/RRC/LITE/rrc_eNB_UE_context.c
modified: openair2/RRC/LITE/rrc_eNB_UE_context.h
modified: openair2/RRC/LITE/rrc_eNB_ral.c
modified: openair2/RRC/LITE/rrc_eNB_ral.h
modified: openair2/RRC/LITE/rrc_rrm_interface.c
modified: openair2/RRC/LITE/rrc_rrm_interface.h
modified: openair2/RRC/LITE/rrc_types.h
modified: openair2/RRC/LITE/rrm_2_rrc_msg.c
modified: openair2/RRC/LITE/utils.c
modified: openair2/RRC/LITE/vars.h
modified: openair2/RRC/NAS/nas_config.c
modified: openair2/RRC/NAS/nas_config.h
modified: openair2/RRC/NAS/rb_config.c
modified: openair2/RRC/NAS/rb_config.h
modified: openair2/RRM_4_RRC_LITE/src/com/Message.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/Message.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageAddRadioAccessBearerConfirm.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageAddRadioAccessBearerConfirm.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageAddRadioAccessBearerRequest.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageAddRadioAccessBearerRequest.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageAddUserConfirm.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageAddUserConfirm.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageAddUserRequest.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageAddUserRequest.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageConnectionRequest.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageConnectionRequest.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageRemoveRadioAccessBearerRequest.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageRemoveRadioAccessBearerRequest.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageRemoveUserRequest.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageRemoveUserRequest.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageUserReconfigurationComplete.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRC2RRMMessageUserReconfigurationComplete.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRCMessageHandler.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRCMessageHandler.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRCUdpSocket.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRCUdpSocket.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageAddRadioAccessBearerResponse.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageAddRadioAccessBearerResponse.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageAddUserResponse.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageAddUserResponse.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageConnectionResponse.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageConnectionResponse.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageRemoveRadioAccessBearerResponse.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageRemoveRadioAccessBearerResponse.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageRemoveUserResponse.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageRemoveUserResponse.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageUserReconfiguration.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrc/RRM2RRCMessageUserReconfiguration.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrm/RRMMessageHandler.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrm/RRMMessageHandler.h
modified: openair2/RRM_4_RRC_LITE/src/com/rrm/RRMUdpSocket.cpp
modified: openair2/RRM_4_RRC_LITE/src/com/rrm/RRMUdpSocket.h
modified: openair2/RRM_4_RRC_LITE/src/platform.h
modified: openair2/RRM_4_RRC_LITE/src/platform_constants.h
modified: openair2/RRM_4_RRC_LITE/src/platform_defines.h
modified: openair2/RRM_4_RRC_LITE/src/platform_dim.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Asn1Utils.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Asn1Utils.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Command.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Command.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/DataRadioBearer.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/DataRadioBearer.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/ENodeB.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/ENodeB.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Exceptions.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/LogicalChannel.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/LogicalChannel.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Mobile.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Mobile.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/RadioBearer.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/RadioBearer.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/RadioResources.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/RadioResources.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/SignallingRadioBearer.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/SignallingRadioBearer.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Transaction.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Transaction.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Transactions.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Transactions.h
modified: openair2/RRM_4_RRC_LITE/src/rrm.cpp
modified: openair2/RRM_4_RRC_LITE/src/test/TestScenario.cpp
modified: openair2/RRM_4_RRC_LITE/src/test/TestScenario.h
modified: openair2/RRM_4_RRC_LITE/src/test/test.cpp
modified: openair2/RRM_4_RRC_LITE/src/version.h
modified: openair2/UTIL/BIGPHYS/bigphys.c
modified: openair2/UTIL/BIGPHYS/defs.h
modified: openair2/UTIL/CLI/cli.c
modified: openair2/UTIL/CLI/cli.h
modified: openair2/UTIL/CLI/cli_cmd.c
modified: openair2/UTIL/CLI/cli_if.h
modified: openair2/UTIL/CLI/cli_server.c
modified: openair2/UTIL/FIFO/pad_list.c
modified: openair2/UTIL/FIFO/pad_list.h
modified: openair2/UTIL/FIFO/types.h
modified: openair2/UTIL/LISTS/list.c
modified: openair2/UTIL/LISTS/list.h
modified: openair2/UTIL/LISTS/list2.c
modified: openair2/UTIL/LOG/log.c
modified: openair2/UTIL/LOG/log.h
modified: openair2/UTIL/LOG/log_extern.h
modified: openair2/UTIL/LOG/log_if.h
modified: openair2/UTIL/LOG/vcd_signal_dumper.c
modified: openair2/UTIL/LOG/vcd_signal_dumper.h
modified: openair2/UTIL/MATH/crc_byte.c
modified: openair2/UTIL/MATH/oml.c
modified: openair2/UTIL/MATH/oml.h
modified: openair2/UTIL/MATH/random.c
modified: openair2/UTIL/MATH/random_proto_extern.h
modified: openair2/UTIL/MATH/taus.c
modified: openair2/UTIL/MEM/mem_block.c
modified: openair2/UTIL/MEM/mem_block.h
modified: openair2/UTIL/MEM/mem_mngt.c
modified: openair2/UTIL/MEM/mem_mngt_proto_extern.h
modified: openair2/UTIL/MEM/mem_pool.h
modified: openair2/UTIL/OCG/OCG.c
modified: openair2/UTIL/OCG/OCG.h
modified: openair2/UTIL/OCG/OCG_call_emu.c
modified: openair2/UTIL/OCG/OCG_call_emu.h
modified: openair2/UTIL/OCG/OCG_config_mobi.c
modified: openair2/UTIL/OCG/OCG_config_mobi.h
modified: openair2/UTIL/OCG/OCG_create_dir.c
modified: openair2/UTIL/OCG/OCG_create_dir.h
modified: openair2/UTIL/OCG/OCG_detect_file.c
modified: openair2/UTIL/OCG/OCG_detect_file.h
modified: openair2/UTIL/OCG/OCG_extern.h
modified: openair2/UTIL/OCG/OCG_generate_report.c
modified: openair2/UTIL/OCG/OCG_generate_report.h
modified: openair2/UTIL/OCG/OCG_get_opt.c
modified: openair2/UTIL/OCG/OCG_get_opt.h
modified: openair2/UTIL/OCG/OCG_if.h
modified: openair2/UTIL/OCG/OCG_parse_XML.c
modified: openair2/UTIL/OCG/OCG_parse_XML.h
modified: openair2/UTIL/OCG/OCG_parse_filename.c
modified: openair2/UTIL/OCG/OCG_parse_filename.h
modified: openair2/UTIL/OCG/OCG_save_XML.c
modified: openair2/UTIL/OCG/OCG_save_XML.h
modified: openair2/UTIL/OCG/OCG_vars.h
modified: openair2/UTIL/OMG/client_traci_OMG.c
modified: openair2/UTIL/OMG/client_traci_OMG.h
modified: openair2/UTIL/OMG/common.c
modified: openair2/UTIL/OMG/defs.h
modified: openair2/UTIL/OMG/grid.c
modified: openair2/UTIL/OMG/grid.h
modified: openair2/UTIL/OMG/id_manager.c
modified: openair2/UTIL/OMG/id_manager.h
modified: openair2/UTIL/OMG/job.c
modified: openair2/UTIL/OMG/mobility_parser.c
modified: openair2/UTIL/OMG/mobility_parser.h
modified: openair2/UTIL/OMG/omg.c
modified: openair2/UTIL/OMG/omg.h
modified: openair2/UTIL/OMG/omg_constants.h
modified: openair2/UTIL/OMG/omg_hashtable.c
modified: openair2/UTIL/OMG/omg_hashtable.h
modified: openair2/UTIL/OMG/omg_vars.h
modified: openair2/UTIL/OMG/rwalk.c
modified: openair2/UTIL/OMG/rwalk.h
modified: openair2/UTIL/OMG/rwp.c
modified: openair2/UTIL/OMG/rwp.h
modified: openair2/UTIL/OMG/socket_traci_OMG.c
modified: openair2/UTIL/OMG/socket_traci_OMG.h
modified: openair2/UTIL/OMG/static.c
modified: openair2/UTIL/OMG/static.h
modified: openair2/UTIL/OMG/steadystaterwp.c
modified: openair2/UTIL/OMG/steadystaterwp.h
modified: openair2/UTIL/OMG/storage_traci_OMG.c
modified: openair2/UTIL/OMG/storage_traci_OMG.h
modified: openair2/UTIL/OMG/sumo.c
modified: openair2/UTIL/OMG/sumo.h
modified: openair2/UTIL/OMG/trace.c
modified: openair2/UTIL/OMG/trace.h
modified: openair2/UTIL/OMG/trace_hashtable.c
modified: openair2/UTIL/OMG/trace_hashtable.h
modified: openair2/UTIL/OMV/communicationthread.cpp
modified: openair2/UTIL/OMV/communicationthread.h
modified: openair2/UTIL/OMV/mywindow.cpp
modified: openair2/UTIL/OMV/mywindow.h
modified: openair2/UTIL/OMV/omv.cpp
modified: openair2/UTIL/OMV/openglwidget.cpp
modified: openair2/UTIL/OMV/openglwidget.h
modified: openair2/UTIL/OMV/structures.h
modified: openair2/UTIL/OPT/opt.h
modified: openair2/UTIL/OPT/socket_sender.c
modified: openair2/UTIL/OPT/vars.h
modified: openair2/UTIL/OSA/osa_defs.h
modified: openair2/UTIL/OSA/osa_internal.h
modified: openair2/UTIL/OSA/osa_key_deriver.c
modified: openair2/UTIL/OSA/osa_rijndael.c
modified: openair2/UTIL/OSA/osa_rijndael.h
modified: openair2/UTIL/OSA/osa_snow3g.c
modified: openair2/UTIL/OSA/osa_snow3g.h
modified: openair2/UTIL/OSA/osa_stream_eea.c
modified: openair2/UTIL/OSA/osa_stream_eia.c
modified: openair2/UTIL/OTG/main.c
modified: openair2/UTIL/OTG/otg.c
modified: openair2/UTIL/OTG/otg.h
modified: openair2/UTIL/OTG/otg_config.h
modified: openair2/UTIL/OTG/otg_defs.h
modified: openair2/UTIL/OTG/otg_externs.h
modified: openair2/UTIL/OTG/otg_form.c
modified: openair2/UTIL/OTG/otg_form.h
modified: openair2/UTIL/OTG/otg_kpi.c
modified: openair2/UTIL/OTG/otg_kpi.h
modified: openair2/UTIL/OTG/otg_models.c
modified: openair2/UTIL/OTG/otg_models.h
modified: openair2/UTIL/OTG/otg_rx.c
modified: openair2/UTIL/OTG/otg_rx.h
modified: openair2/UTIL/OTG/otg_rx_socket.c
modified: openair2/UTIL/OTG/otg_rx_socket.h
modified: openair2/UTIL/OTG/otg_tx.c
modified: openair2/UTIL/OTG/otg_tx.h
modified: openair2/UTIL/OTG/otg_tx_socket.c
modified: openair2/UTIL/OTG/otg_tx_socket.h
modified: openair2/UTIL/OTG/otg_vars.h
modified: openair2/UTIL/OTG/traffic_config.h
modified: openair2/UTIL/TIMER/umts_timer.c
modified: openair2/UTIL/TIMER/umts_timer.h
modified: openair2/UTIL/TIMER/umts_timer_proto_extern.h
modified: openair2/UTIL/TIMER/umts_timer_struct.h
modified: openair2/UTIL/TRACE/fifo_printf.c
modified: openair2/UTIL/TRACE/fifo_printf.h
modified: openair2/UTIL/TRACE/fifo_printf_proto_extern.h
modified: openair2/UTIL/TRACE/print.h
modified: openair2/X2AP/x2ap.c
modified: openair2/X2AP/x2ap.h
modified: openair2/X2AP/x2ap_common.c
modified: openair2/X2AP/x2ap_common.h
modified: openair3/COMMON/common_types.h
modified: openair3/COMMON/gtpv1_u_messages_def.h
modified: openair3/COMMON/gtpv1_u_messages_types.h
modified: openair3/COMMON/intertask_interface_conf.h
modified: openair3/COMMON/messages_def.h
modified: openair3/COMMON/messages_types.h
modified: openair3/COMMON/nas_messages_def.h
modified: openair3/COMMON/nas_messages_types.h
modified: openair3/COMMON/s1ap_messages_def.h
modified: openair3/COMMON/s1ap_messages_types.h
modified: openair3/COMMON/sctp_messages_def.h
modified: openair3/COMMON/sctp_messages_types.h
modified: openair3/COMMON/security_types.h
modified: openair3/COMMON/tasks_def.h
modified: openair3/COMMON/udp_messages_def.h
modified: openair3/COMMON/udp_messages_types.h
modified: openair3/GTPV1-U/gtpv1u.h
modified: openair3/GTPV1-U/gtpv1u_eNB.c
modified: openair3/GTPV1-U/gtpv1u_eNB_defs.h
modified: openair3/GTPV1-U/gtpv1u_eNB_task.h
modified: openair3/GTPV1-U/gtpv1u_sgw_defs.h
modified: openair3/GTPV1-U/gtpv1u_task.c
modified: openair3/GTPV1-U/gtpv1u_teid_pool.c
modified: openair3/NAS/COMMON/API/NETWORK/as_message.c
modified: openair3/NAS/COMMON/API/NETWORK/l2_message.h
modified: openair3/NAS/COMMON/API/NETWORK/nas_message.c
modified: openair3/NAS/COMMON/API/NETWORK/nas_message.h
modified: openair3/NAS/COMMON/API/NETWORK/network_api.c
modified: openair3/NAS/COMMON/API/NETWORK/network_api.h
modified: openair3/NAS/COMMON/EMM/MSG/AttachAccept.c
modified: openair3/NAS/COMMON/EMM/MSG/AttachAccept.h
modified: openair3/NAS/COMMON/EMM/MSG/AttachComplete.c
modified: openair3/NAS/COMMON/EMM/MSG/AttachComplete.h
modified: openair3/NAS/COMMON/EMM/MSG/AttachReject.c
modified: openair3/NAS/COMMON/EMM/MSG/AttachReject.h
modified: openair3/NAS/COMMON/EMM/MSG/AttachRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/AttachRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationFailure.c
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationFailure.h
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationReject.c
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationReject.h
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationResponse.c
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationResponse.h
modified: openair3/NAS/COMMON/EMM/MSG/CsServiceNotification.c
modified: openair3/NAS/COMMON/EMM/MSG/CsServiceNotification.h
modified: openair3/NAS/COMMON/EMM/MSG/DetachAccept.c
modified: openair3/NAS/COMMON/EMM/MSG/DetachAccept.h
modified: openair3/NAS/COMMON/EMM/MSG/DetachRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/DetachRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/DownlinkNasTransport.c
modified: openair3/NAS/COMMON/EMM/MSG/DownlinkNasTransport.h
modified: openair3/NAS/COMMON/EMM/MSG/EmmInformation.c
modified: openair3/NAS/COMMON/EMM/MSG/EmmInformation.h
modified: openair3/NAS/COMMON/EMM/MSG/EmmStatus.c
modified: openair3/NAS/COMMON/EMM/MSG/EmmStatus.h
modified: openair3/NAS/COMMON/EMM/MSG/ExtendedServiceRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/ExtendedServiceRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/GutiReallocationCommand.c
modified: openair3/NAS/COMMON/EMM/MSG/GutiReallocationCommand.h
modified: openair3/NAS/COMMON/EMM/MSG/GutiReallocationComplete.c
modified: openair3/NAS/COMMON/EMM/MSG/GutiReallocationComplete.h
modified: openair3/NAS/COMMON/EMM/MSG/IdentityRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/IdentityRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/IdentityResponse.c
modified: openair3/NAS/COMMON/EMM/MSG/IdentityResponse.h
modified: openair3/NAS/COMMON/EMM/MSG/NASSecurityModeCommand.h
modified: openair3/NAS/COMMON/EMM/MSG/NASSecurityModeComplete.h
modified: openair3/NAS/COMMON/EMM/MSG/SecurityModeCommand.c
modified: openair3/NAS/COMMON/EMM/MSG/SecurityModeComplete.c
modified: openair3/NAS/COMMON/EMM/MSG/SecurityModeReject.c
modified: openair3/NAS/COMMON/EMM/MSG/SecurityModeReject.h
modified: openair3/NAS/COMMON/EMM/MSG/ServiceReject.c
modified: openair3/NAS/COMMON/EMM/MSG/ServiceReject.h
modified: openair3/NAS/COMMON/EMM/MSG/ServiceRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/ServiceRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateAccept.c
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateAccept.h
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateComplete.c
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateComplete.h
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateReject.c
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateReject.h
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/UplinkNasTransport.c
modified: openair3/NAS/COMMON/EMM/MSG/UplinkNasTransport.h
modified: openair3/NAS/COMMON/EMM/MSG/emm_cause.h
modified: openair3/NAS/COMMON/EMM/MSG/emm_msg.c
modified: openair3/NAS/COMMON/EMM/MSG/emm_msg.h
modified: openair3/NAS/COMMON/EMM/MSG/emm_msgDef.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextAccept.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextAccept.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextReject.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextReject.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextAccept.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextAccept.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextReject.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextReject.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceAllocationReject.c
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceAllocationReject.h
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceAllocationRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceAllocationRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceModificationReject.c
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceModificationReject.h
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceModificationRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceModificationRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/DeactivateEpsBearerContextAccept.c
modified: openair3/NAS/COMMON/ESM/MSG/DeactivateEpsBearerContextAccept.h
modified: openair3/NAS/COMMON/ESM/MSG/DeactivateEpsBearerContextRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/DeactivateEpsBearerContextRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/EsmInformationRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/EsmInformationRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/EsmInformationResponse.c
modified: openair3/NAS/COMMON/ESM/MSG/EsmInformationResponse.h
modified: openair3/NAS/COMMON/ESM/MSG/EsmStatus.c
modified: openair3/NAS/COMMON/ESM/MSG/EsmStatus.h
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextAccept.c
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextAccept.h
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextReject.c
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextReject.h
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/PdnConnectivityReject.c
modified: openair3/NAS/COMMON/ESM/MSG/PdnConnectivityReject.h
modified: openair3/NAS/COMMON/ESM/MSG/PdnConnectivityRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/PdnConnectivityRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/PdnDisconnectReject.c
modified: openair3/NAS/COMMON/ESM/MSG/PdnDisconnectReject.h
modified: openair3/NAS/COMMON/ESM/MSG/PdnDisconnectRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/PdnDisconnectRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/esm_cause.h
modified: openair3/NAS/COMMON/ESM/MSG/esm_msg.c
modified: openair3/NAS/COMMON/ESM/MSG/esm_msg.h
modified: openair3/NAS/COMMON/ESM/MSG/esm_msgDef.h
modified: openair3/NAS/COMMON/IES/AccessPointName.c
modified: openair3/NAS/COMMON/IES/AccessPointName.h
modified: openair3/NAS/COMMON/IES/AdditionalUpdateResult.c
modified: openair3/NAS/COMMON/IES/AdditionalUpdateResult.h
modified: openair3/NAS/COMMON/IES/AdditionalUpdateType.c
modified: openair3/NAS/COMMON/IES/AdditionalUpdateType.h
modified: openair3/NAS/COMMON/IES/ApnAggregateMaximumBitRate.c
modified: openair3/NAS/COMMON/IES/ApnAggregateMaximumBitRate.h
modified: openair3/NAS/COMMON/IES/AuthenticationFailureParameter.c
modified: openair3/NAS/COMMON/IES/AuthenticationFailureParameter.h
modified: openair3/NAS/COMMON/IES/AuthenticationParameterAutn.c
modified: openair3/NAS/COMMON/IES/AuthenticationParameterAutn.h
modified: openair3/NAS/COMMON/IES/AuthenticationParameterRand.c
modified: openair3/NAS/COMMON/IES/AuthenticationParameterRand.h
modified: openair3/NAS/COMMON/IES/AuthenticationResponseParameter.c
modified: openair3/NAS/COMMON/IES/AuthenticationResponseParameter.h
modified: openair3/NAS/COMMON/IES/CipheringKeySequenceNumber.c
modified: openair3/NAS/COMMON/IES/CipheringKeySequenceNumber.h
modified: openair3/NAS/COMMON/IES/Cli.c
modified: openair3/NAS/COMMON/IES/Cli.h
modified: openair3/NAS/COMMON/IES/CsfbResponse.c
modified: openair3/NAS/COMMON/IES/CsfbResponse.h
modified: openair3/NAS/COMMON/IES/DaylightSavingTime.c
modified: openair3/NAS/COMMON/IES/DaylightSavingTime.h
modified: openair3/NAS/COMMON/IES/DetachType.c
modified: openair3/NAS/COMMON/IES/DetachType.h
modified: openair3/NAS/COMMON/IES/DrxParameter.c
modified: openair3/NAS/COMMON/IES/DrxParameter.h
modified: openair3/NAS/COMMON/IES/EmergencyNumberList.c
modified: openair3/NAS/COMMON/IES/EmergencyNumberList.h
modified: openair3/NAS/COMMON/IES/EmmCause.c
modified: openair3/NAS/COMMON/IES/EmmCause.h
modified: openair3/NAS/COMMON/IES/EpsAttachResult.c
modified: openair3/NAS/COMMON/IES/EpsAttachResult.h
modified: openair3/NAS/COMMON/IES/EpsAttachType.c
modified: openair3/NAS/COMMON/IES/EpsAttachType.h
modified: openair3/NAS/COMMON/IES/EpsBearerContextStatus.c
modified: openair3/NAS/COMMON/IES/EpsBearerContextStatus.h
modified: openair3/NAS/COMMON/IES/EpsBearerIdentity.c
modified: openair3/NAS/COMMON/IES/EpsBearerIdentity.h
modified: openair3/NAS/COMMON/IES/EpsMobileIdentity.c
modified: openair3/NAS/COMMON/IES/EpsMobileIdentity.h
modified: openair3/NAS/COMMON/IES/EpsNetworkFeatureSupport.c
modified: openair3/NAS/COMMON/IES/EpsNetworkFeatureSupport.h
modified: openair3/NAS/COMMON/IES/EpsQualityOfService.c
modified: openair3/NAS/COMMON/IES/EpsQualityOfService.h
modified: openair3/NAS/COMMON/IES/EpsUpdateResult.c
modified: openair3/NAS/COMMON/IES/EpsUpdateResult.h
modified: openair3/NAS/COMMON/IES/EpsUpdateType.c
modified: openair3/NAS/COMMON/IES/EpsUpdateType.h
modified: openair3/NAS/COMMON/IES/EsmCause.c
modified: openair3/NAS/COMMON/IES/EsmCause.h
modified: openair3/NAS/COMMON/IES/EsmInformationTransferFlag.c
modified: openair3/NAS/COMMON/IES/EsmInformationTransferFlag.h
modified: openair3/NAS/COMMON/IES/EsmMessageContainer.c
modified: openair3/NAS/COMMON/IES/EsmMessageContainer.h
modified: openair3/NAS/COMMON/IES/GprsTimer.c
modified: openair3/NAS/COMMON/IES/GprsTimer.h
modified: openair3/NAS/COMMON/IES/GutiType.c
modified: openair3/NAS/COMMON/IES/GutiType.h
modified: openair3/NAS/COMMON/IES/IdentityType2.c
modified: openair3/NAS/COMMON/IES/IdentityType2.h
modified: openair3/NAS/COMMON/IES/ImeisvRequest.c
modified: openair3/NAS/COMMON/IES/ImeisvRequest.h
modified: openair3/NAS/COMMON/IES/KsiAndSequenceNumber.c
modified: openair3/NAS/COMMON/IES/KsiAndSequenceNumber.h
modified: openair3/NAS/COMMON/IES/LcsClientIdentity.c
modified: openair3/NAS/COMMON/IES/LcsClientIdentity.h
modified: openair3/NAS/COMMON/IES/LcsIndicator.c
modified: openair3/NAS/COMMON/IES/LcsIndicator.h
modified: openair3/NAS/COMMON/IES/LinkedEpsBearerIdentity.c
modified: openair3/NAS/COMMON/IES/LinkedEpsBearerIdentity.h
modified: openair3/NAS/COMMON/IES/LlcServiceAccessPointIdentifier.c
modified: openair3/NAS/COMMON/IES/LlcServiceAccessPointIdentifier.h
modified: openair3/NAS/COMMON/IES/LocationAreaIdentification.c
modified: openair3/NAS/COMMON/IES/LocationAreaIdentification.h
modified: openair3/NAS/COMMON/IES/MessageType.c
modified: openair3/NAS/COMMON/IES/MessageType.h
modified: openair3/NAS/COMMON/IES/MobileIdentity.c
modified: openair3/NAS/COMMON/IES/MobileIdentity.h
modified: openair3/NAS/COMMON/IES/MobileStationClassmark2.c
modified: openair3/NAS/COMMON/IES/MobileStationClassmark2.h
modified: openair3/NAS/COMMON/IES/MobileStationClassmark3.c
modified: openair3/NAS/COMMON/IES/MobileStationClassmark3.h
modified: openair3/NAS/COMMON/IES/MsNetworkCapability.c
modified: openair3/NAS/COMMON/IES/MsNetworkCapability.h
modified: openair3/NAS/COMMON/IES/MsNetworkFeatureSupport.c
modified: openair3/NAS/COMMON/IES/MsNetworkFeatureSupport.h
modified: openair3/NAS/COMMON/IES/NasKeySetIdentifier.c
modified: openair3/NAS/COMMON/IES/NasKeySetIdentifier.h
modified: openair3/NAS/COMMON/IES/NasMessageContainer.c
modified: openair3/NAS/COMMON/IES/NasMessageContainer.h
modified: openair3/NAS/COMMON/IES/NasRequestType.c
modified: openair3/NAS/COMMON/IES/NasRequestType.h
modified: openair3/NAS/COMMON/IES/NasSecurityAlgorithms.c
modified: openair3/NAS/COMMON/IES/NasSecurityAlgorithms.h
modified: openair3/NAS/COMMON/IES/NetworkName.c
modified: openair3/NAS/COMMON/IES/NetworkName.h
modified: openair3/NAS/COMMON/IES/Nonce.c
modified: openair3/NAS/COMMON/IES/Nonce.h
modified: openair3/NAS/COMMON/IES/PTmsiSignature.c
modified: openair3/NAS/COMMON/IES/PTmsiSignature.h
modified: openair3/NAS/COMMON/IES/PacketFlowIdentifier.c
modified: openair3/NAS/COMMON/IES/PacketFlowIdentifier.h
modified: openair3/NAS/COMMON/IES/PagingIdentity.c
modified: openair3/NAS/COMMON/IES/PagingIdentity.h
modified: openair3/NAS/COMMON/IES/PdnAddress.c
modified: openair3/NAS/COMMON/IES/PdnAddress.h
modified: openair3/NAS/COMMON/IES/PdnType.c
modified: openair3/NAS/COMMON/IES/PdnType.h
modified: openair3/NAS/COMMON/IES/PlmnList.c
modified: openair3/NAS/COMMON/IES/PlmnList.h
modified: openair3/NAS/COMMON/IES/ProcedureTransactionIdentity.c
modified: openair3/NAS/COMMON/IES/ProcedureTransactionIdentity.h
modified: openair3/NAS/COMMON/IES/ProtocolConfigurationOptions.c
modified: openair3/NAS/COMMON/IES/ProtocolConfigurationOptions.h
modified: openair3/NAS/COMMON/IES/ProtocolDiscriminator.c
modified: openair3/NAS/COMMON/IES/ProtocolDiscriminator.h
modified: openair3/NAS/COMMON/IES/QualityOfService.c
modified: openair3/NAS/COMMON/IES/QualityOfService.h
modified: openair3/NAS/COMMON/IES/RadioPriority.c
modified: openair3/NAS/COMMON/IES/RadioPriority.h
modified: openair3/NAS/COMMON/IES/SecurityHeaderType.c
modified: openair3/NAS/COMMON/IES/SecurityHeaderType.h
modified: openair3/NAS/COMMON/IES/ServiceType.c
modified: openair3/NAS/COMMON/IES/ServiceType.h
modified: openair3/NAS/COMMON/IES/ShortMac.c
modified: openair3/NAS/COMMON/IES/ShortMac.h
modified: openair3/NAS/COMMON/IES/SsCode.c
modified: openair3/NAS/COMMON/IES/SsCode.h
modified: openair3/NAS/COMMON/IES/SupportedCodecList.c
modified: openair3/NAS/COMMON/IES/SupportedCodecList.h
modified: openair3/NAS/COMMON/IES/TimeZone.c
modified: openair3/NAS/COMMON/IES/TimeZone.h
modified: openair3/NAS/COMMON/IES/TimeZoneAndTime.c
modified: openair3/NAS/COMMON/IES/TimeZoneAndTime.h
modified: openair3/NAS/COMMON/IES/TmsiStatus.c
modified: openair3/NAS/COMMON/IES/TmsiStatus.h
modified: openair3/NAS/COMMON/IES/TrackingAreaIdentity.c
modified: openair3/NAS/COMMON/IES/TrackingAreaIdentity.h
modified: openair3/NAS/COMMON/IES/TrackingAreaIdentityList.c
modified: openair3/NAS/COMMON/IES/TrackingAreaIdentityList.h
modified: openair3/NAS/COMMON/IES/TrafficFlowAggregateDescription.c
modified: openair3/NAS/COMMON/IES/TrafficFlowAggregateDescription.h
modified: openair3/NAS/COMMON/IES/TrafficFlowTemplate.c
modified: openair3/NAS/COMMON/IES/TrafficFlowTemplate.h
modified: openair3/NAS/COMMON/IES/TransactionIdentifier.c
modified: openair3/NAS/COMMON/IES/TransactionIdentifier.h
modified: openair3/NAS/COMMON/IES/UeNetworkCapability.c
modified: openair3/NAS/COMMON/IES/UeNetworkCapability.h
modified: openair3/NAS/COMMON/IES/UeRadioCapabilityInformationUpdateNeeded.c
modified: openair3/NAS/COMMON/IES/UeRadioCapabilityInformationUpdateNeeded.h
modified: openair3/NAS/COMMON/IES/UeSecurityCapability.c
modified: openair3/NAS/COMMON/IES/UeSecurityCapability.h
modified: openair3/NAS/COMMON/IES/VoiceDomainPreferenceAndUeUsageSetting.c
modified: openair3/NAS/COMMON/IES/VoiceDomainPreferenceAndUeUsageSetting.h
modified: openair3/NAS/COMMON/UTIL/OctetString.c
modified: openair3/NAS/COMMON/UTIL/OctetString.h
modified: openair3/NAS/COMMON/UTIL/TLVDecoder.c
modified: openair3/NAS/COMMON/UTIL/TLVDecoder.h
modified: openair3/NAS/COMMON/UTIL/TLVEncoder.c
modified: openair3/NAS/COMMON/UTIL/TLVEncoder.h
modified: openair3/NAS/COMMON/UTIL/device.c
modified: openair3/NAS/COMMON/UTIL/device.h
modified: openair3/NAS/COMMON/UTIL/memory.c
modified: openair3/NAS/COMMON/UTIL/memory.h
modified: openair3/NAS/COMMON/UTIL/nas_log.c
modified: openair3/NAS/COMMON/UTIL/nas_log.h
modified: openair3/NAS/COMMON/UTIL/nas_timer.c
modified: openair3/NAS/COMMON/UTIL/nas_timer.h
modified: openair3/NAS/COMMON/UTIL/parser.c
modified: openair3/NAS/COMMON/UTIL/parser.h
modified: openair3/NAS/COMMON/UTIL/socket.c
modified: openair3/NAS/COMMON/UTIL/socket.h
modified: openair3/NAS/COMMON/UTIL/stty.c
modified: openair3/NAS/COMMON/UTIL/tst/timer.c
modified: openair3/NAS/COMMON/securityDef.h
modified: openair3/NAS/COMMON/userDef.h
modified: openair3/NAS/TEST/AS_SIMULATOR/as_data.c
modified: openair3/NAS/TEST/AS_SIMULATOR/as_data.h
modified: openair3/NAS/TEST/AS_SIMULATOR/as_process.c
modified: openair3/NAS/TEST/AS_SIMULATOR/as_process.h
modified: openair3/NAS/TEST/AS_SIMULATOR/as_simulator.c
modified: openair3/NAS/TEST/AS_SIMULATOR/as_simulator_parser.c
modified: openair3/NAS/TEST/AS_SIMULATOR/as_simulator_parser.h
modified: openair3/NAS/TEST/AS_SIMULATOR/nas_data.c
modified: openair3/NAS/TEST/AS_SIMULATOR/nas_data.h
modified: openair3/NAS/TEST/AS_SIMULATOR/nas_process.c
modified: openair3/NAS/TEST/AS_SIMULATOR/nas_process.h
modified: openair3/NAS/TEST/NETWORK/network_parser.c
modified: openair3/NAS/TEST/NETWORK/network_parser.h
modified: openair3/NAS/TEST/NETWORK/network_simulator.c
modified: openair3/NAS/TEST/USER/user_parser.c
modified: openair3/NAS/TEST/USER/user_parser.h
modified: openair3/NAS/TEST/USER/user_simulator.c
modified: openair3/NAS/TOOLS/network.h
modified: openair3/NAS/TOOLS/ue_data.c
modified: openair3/NAS/TOOLS/usim_data.c
modified: openair3/NAS/UE/API/USER/at_command.c
modified: openair3/NAS/UE/API/USER/at_command.h
modified: openair3/NAS/UE/API/USER/at_error.c
modified: openair3/NAS/UE/API/USER/at_error.h
modified: openair3/NAS/UE/API/USER/at_response.c
modified: openair3/NAS/UE/API/USER/at_response.h
modified: openair3/NAS/UE/API/USER/tst/at_parser.c
modified: openair3/NAS/UE/API/USER/user_api.c
modified: openair3/NAS/UE/API/USER/user_api.h
modified: openair3/NAS/UE/API/USER/user_indication.c
modified: openair3/NAS/UE/API/USER/user_indication.h
modified: openair3/NAS/UE/API/USIM/aka_functions.c
modified: openair3/NAS/UE/API/USIM/aka_functions.h
modified: openair3/NAS/UE/API/USIM/usim_api.c
modified: openair3/NAS/UE/API/USIM/usim_api.h
modified: openair3/NAS/UE/EMM/Attach.c
modified: openair3/NAS/UE/EMM/Authentication.c
modified: openair3/NAS/UE/EMM/Detach.c
modified: openair3/NAS/UE/EMM/EmmStatusHdl.c
modified: openair3/NAS/UE/EMM/Identification.c
modified: openair3/NAS/UE/EMM/IdleMode.c
modified: openair3/NAS/UE/EMM/IdleMode.h
modified: openair3/NAS/UE/EMM/LowerLayer.c
modified: openair3/NAS/UE/EMM/LowerLayer.h
modified: openair3/NAS/UE/EMM/SAP/EmmDeregistered.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredAttachNeeded.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredAttemptingToAttach.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredInitiated.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredLimitedService.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredNoCellAvailable.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredNoImsi.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredNormalService.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredPlmnSearch.c
modified: openair3/NAS/UE/EMM/SAP/EmmNull.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegistered.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredAttemptingToUpdate.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredImsiDetachInitiated.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredInitiated.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredLimitedService.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredNoCellAvailable.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredNormalService.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredPlmnSearch.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredUpdateNeeded.c
modified: openair3/NAS/UE/EMM/SAP/EmmServiceRequestInitiated.c
modified: openair3/NAS/UE/EMM/SAP/EmmTrackingAreaUpdatingInitiated.c
modified: openair3/NAS/UE/EMM/SAP/emm_as.c
modified: openair3/NAS/UE/EMM/SAP/emm_as.h
modified: openair3/NAS/UE/EMM/SAP/emm_asDef.h
modified: openair3/NAS/UE/EMM/SAP/emm_esm.c
modified: openair3/NAS/UE/EMM/SAP/emm_esm.h
modified: openair3/NAS/UE/EMM/SAP/emm_esmDef.h
modified: openair3/NAS/UE/EMM/SAP/emm_fsm.c
modified: openair3/NAS/UE/EMM/SAP/emm_fsm.h
modified: openair3/NAS/UE/EMM/SAP/emm_recv.c
modified: openair3/NAS/UE/EMM/SAP/emm_recv.h
modified: openair3/NAS/UE/EMM/SAP/emm_reg.c
modified: openair3/NAS/UE/EMM/SAP/emm_reg.h
modified: openair3/NAS/UE/EMM/SAP/emm_regDef.h
modified: openair3/NAS/UE/EMM/SAP/emm_sap.c
modified: openair3/NAS/UE/EMM/SAP/emm_sap.h
modified: openair3/NAS/UE/EMM/SAP/emm_send.c
modified: openair3/NAS/UE/EMM/SAP/emm_send.h
modified: openair3/NAS/UE/EMM/SecurityModeControl.c
modified: openair3/NAS/UE/EMM/ServiceRequestHdl.c
modified: openair3/NAS/UE/EMM/TrackingAreaUpdate.c
modified: openair3/NAS/UE/EMM/emmData.h
modified: openair3/NAS/UE/EMM/emm_main.c
modified: openair3/NAS/UE/EMM/emm_main.h
modified: openair3/NAS/UE/EMM/emm_proc.h
modified: openair3/NAS/UE/ESM/DedicatedEpsBearerContextActivation.c
modified: openair3/NAS/UE/ESM/DefaultEpsBearerContextActivation.c
modified: openair3/NAS/UE/ESM/EpsBearerContextDeactivation.c
modified: openair3/NAS/UE/ESM/EsmStatusHdl.c
modified: openair3/NAS/UE/ESM/PdnConnectivity.c
modified: openair3/NAS/UE/ESM/PdnDisconnect.c
modified: openair3/NAS/UE/ESM/SAP/esm_recv.c
modified: openair3/NAS/UE/ESM/SAP/esm_recv.h
modified: openair3/NAS/UE/ESM/SAP/esm_sap.c
modified: openair3/NAS/UE/ESM/SAP/esm_sap.h
modified: openair3/NAS/UE/ESM/SAP/esm_sapDef.h
modified: openair3/NAS/UE/ESM/SAP/esm_send.c
modified: openair3/NAS/UE/ESM/SAP/esm_send.h
modified: openair3/NAS/UE/ESM/esmData.h
modified: openair3/NAS/UE/ESM/esm_ebr.c
modified: openair3/NAS/UE/ESM/esm_ebr.h
modified: openair3/NAS/UE/ESM/esm_ebr_context.c
modified: openair3/NAS/UE/ESM/esm_ebr_context.h
modified: openair3/NAS/UE/ESM/esm_ip.c
modified: openair3/NAS/UE/ESM/esm_main.c
modified: openair3/NAS/UE/ESM/esm_main.h
modified: openair3/NAS/UE/ESM/esm_proc.h
modified: openair3/NAS/UE/ESM/esm_pt.c
modified: openair3/NAS/UE/ESM/esm_pt.h
modified: openair3/NAS/UE/UEprocess.c
modified: openair3/NAS/UE/nas_itti_messaging.c
modified: openair3/NAS/UE/nas_itti_messaging.h
modified: openair3/NAS/UE/nas_network.c
modified: openair3/NAS/UE/nas_network.h
modified: openair3/NAS/UE/nas_parser.c
modified: openair3/NAS/UE/nas_parser.h
modified: openair3/NAS/UE/nas_proc.c
modified: openair3/NAS/UE/nas_proc.h
modified: openair3/NAS/UE/nas_ue_task.c
modified: openair3/NAS/UE/nas_user.c
modified: openair3/NAS/UE/nas_user.h
modified: openair3/S1AP/s1ap_common.c
modified: openair3/S1AP/s1ap_common.h
modified: openair3/S1AP/s1ap_eNB.c
modified: openair3/S1AP/s1ap_eNB.h
modified: openair3/S1AP/s1ap_eNB_context_management_procedures.c
modified: openair3/S1AP/s1ap_eNB_context_management_procedures.h
modified: openair3/S1AP/s1ap_eNB_decoder.c
modified: openair3/S1AP/s1ap_eNB_decoder.h
modified: openair3/S1AP/s1ap_eNB_default_values.h
modified: openair3/S1AP/s1ap_eNB_defs.h
modified: openair3/S1AP/s1ap_eNB_encoder.c
modified: openair3/S1AP/s1ap_eNB_encoder.h
modified: openair3/S1AP/s1ap_eNB_handlers.c
modified: openair3/S1AP/s1ap_eNB_handlers.h
modified: openair3/S1AP/s1ap_eNB_itti_messaging.c
modified: openair3/S1AP/s1ap_eNB_itti_messaging.h
modified: openair3/S1AP/s1ap_eNB_management_procedures.c
modified: openair3/S1AP/s1ap_eNB_management_procedures.h
modified: openair3/S1AP/s1ap_eNB_nas_procedures.c
modified: openair3/S1AP/s1ap_eNB_nas_procedures.h
modified: openair3/S1AP/s1ap_eNB_nnsf.c
modified: openair3/S1AP/s1ap_eNB_nnsf.h
modified: openair3/S1AP/s1ap_eNB_overload.c
modified: openair3/S1AP/s1ap_eNB_overload.h
modified: openair3/S1AP/s1ap_eNB_trace.c
modified: openair3/S1AP/s1ap_eNB_trace.h
modified: openair3/S1AP/s1ap_eNB_ue_context.c
modified: openair3/S1AP/s1ap_eNB_ue_context.h
modified: openair3/SCTP/sctp_common.c
modified: openair3/SCTP/sctp_common.h
modified: openair3/SCTP/sctp_default_values.h
modified: openair3/SCTP/sctp_eNB_defs.h
modified: openair3/SCTP/sctp_eNB_itti_messaging.c
modified: openair3/SCTP/sctp_eNB_itti_messaging.h
modified: openair3/SCTP/sctp_eNB_task.c
modified: openair3/SCTP/sctp_eNB_task.h
modified: openair3/SCTP/sctp_primitives_client.c
modified: openair3/SCTP/sctp_primitives_client.h
modified: openair3/SECU/kdf.c
modified: openair3/SECU/key_nas_deriver.c
modified: openair3/SECU/key_nas_encryption.c
modified: openair3/SECU/nas_stream_eea1.c
modified: openair3/SECU/nas_stream_eea2.c
modified: openair3/SECU/nas_stream_eia1.c
modified: openair3/SECU/nas_stream_eia2.c
modified: openair3/SECU/rijndael.c
modified: openair3/SECU/rijndael.h
modified: openair3/SECU/secu_defs.h
modified: openair3/SECU/snow3g.c
modified: openair3/SECU/snow3g.h
modified: openair3/TEST/EPC_TEST/generate_scenario.c
modified: openair3/TEST/EPC_TEST/generate_scenario.h
modified: openair3/TEST/EPC_TEST/play_scenario.c
modified: openair3/TEST/EPC_TEST/play_scenario.h
modified: openair3/TEST/EPC_TEST/play_scenario_decode.c
modified: openair3/TEST/EPC_TEST/play_scenario_display.c
modified: openair3/TEST/EPC_TEST/play_scenario_fsm.c
modified: openair3/TEST/EPC_TEST/play_scenario_parse.c
modified: openair3/TEST/EPC_TEST/play_scenario_s1ap.c
modified: openair3/TEST/EPC_TEST/play_scenario_s1ap_compare_ie.c
modified: openair3/TEST/EPC_TEST/play_scenario_s1ap_eNB_defs.h
modified: openair3/TEST/EPC_TEST/play_scenario_sctp.c
modified: openair3/TEST/oaisim_mme_client_test.c
modified: openair3/TEST/oaisim_mme_itti_test.c
modified: openair3/TEST/oaisim_mme_list_benchmark.c
modified: openair3/TEST/oaisim_mme_s1ap_test.c
modified: openair3/TEST/oaisim_mme_sctp_test.c
modified: openair3/TEST/oaisim_mme_test_s1c.c
modified: openair3/TEST/oaisim_mme_test_s1c.h
modified: openair3/TEST/oaisim_mme_test_s1c_s1ap.c
modified: openair3/TEST/oaisim_mme_test_s1c_s1ap.h
modified: openair3/TEST/oaisim_mme_test_s1c_scenario.c
modified: openair3/TEST/oaisim_mme_test_s1c_scenario.h
modified: openair3/TEST/oaisim_mme_test_s1c_scenario1.c
modified: openair3/TEST/test_aes128_cmac_encrypt.c
modified: openair3/TEST/test_aes128_ctr_decrypt.c
modified: openair3/TEST/test_aes128_ctr_encrypt.c
modified: openair3/TEST/test_kdf.c
modified: openair3/TEST/test_s1ap.c
modified: openair3/TEST/test_secu.c
modified: openair3/TEST/test_secu_kenb.c
modified: openair3/TEST/test_secu_knas.c
modified: openair3/TEST/test_secu_knas_encrypt_eea1.c
modified: openair3/TEST/test_secu_knas_encrypt_eea2.c
modified: openair3/TEST/test_secu_knas_encrypt_eia1.c
modified: openair3/TEST/test_secu_knas_encrypt_eia2.c
modified: openair3/TEST/test_secu_knas_stream_int.c
modified: openair3/UDP/udp_eNB_task.c
modified: openair3/UDP/udp_eNB_task.h
modified: openair3/UTILS/conversions.c
modified: openair3/UTILS/conversions.h
modified: openair3/UTILS/enum_string.c
modified: openair3/UTILS/enum_string.h
modified: openair3/UTILS/log.c
modified: openair3/UTILS/log.h
modified: openair3/UTILS/mcc_mnc_itu.c
modified: openair3/UTILS/mcc_mnc_itu.h
modified: openair3/UTILS/mme_config.c
modified: openair3/UTILS/mme_config.h
modified: openair3/UTILS/mme_default_values.h
modified: targets/ARCH/BLADERF/USERSPACE/LIB/bladerf_lib.c
modified: targets/ARCH/BLADERF/USERSPACE/LIB/bladerf_lib.h
modified: targets/ARCH/COMMON/common_lib.c
modified: targets/ARCH/COMMON/common_lib.h
modified: targets/ARCH/ETHERNET/USERSPACE/LIB/eth_raw.c
modified: targets/ARCH/ETHERNET/USERSPACE/LIB/eth_udp.c
modified: targets/ARCH/ETHERNET/USERSPACE/LIB/ethernet_lib.c
modified: targets/ARCH/ETHERNET/USERSPACE/LIB/ethernet_lib.h
modified: targets/ARCH/ETHERNET/USERSPACE/LIB/if_defs.h
modified: targets/ARCH/EXMIMO/DEFS/openair_device.h
modified: targets/ARCH/EXMIMO/DEFS/pcie_interface.h
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/defs.h
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/exmimo_fw.c
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/extern.h
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/fileops.c
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/irq.c
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/module_main.c
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/vars.h
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/defs.h
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/exmimo_fw.c
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/extern.h
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/fileops.c
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/irq.c
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/module_main.c
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/vars.h
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_dev.c
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_drv.c
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_drv.h
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_fifos.c
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_ioctl.c
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_mmap.c
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_rw.c
modified: targets/ARCH/EXMIMO/USERSPACE/LIB/example.c
modified: targets/ARCH/EXMIMO/USERSPACE/LIB/gain_control.c
modified: targets/ARCH/EXMIMO/USERSPACE/LIB/gain_control.h
modified: targets/ARCH/EXMIMO/USERSPACE/LIB/openair0_lib.c
modified: targets/ARCH/EXMIMO/USERSPACE/LIB/openair0_lib.h
modified: targets/ARCH/EXMIMO/USERSPACE/OAI_FW_INIT/updatefw.c
modified: targets/ARCH/EXMIMO/USERSPACE/OAI_FW_INIT/updatefw.h
modified: targets/ARCH/EXMIMO/USERSPACE/OCTAVE/oarf.h
modified: targets/ARCH/LMSSDR/USERSPACE/LIB/lms_lib.cpp
modified: targets/ARCH/LMSSDR/USERSPACE/LIB/sodera_lib.cpp
modified: targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
modified: targets/COMMON/create_tasks.c
modified: targets/COMMON/create_tasks.h
modified: targets/RT/USER/TOOLS/thread_ipc.c
modified: targets/RT/USER/TOOLS/thread_ipc.h
modified: targets/RT/USER/UE_transport_IQ.c
modified: targets/RT/USER/condtest.c
modified: targets/RT/USER/eNB_transport_IQ.c
modified: targets/RT/USER/emos-raw.c
modified: targets/RT/USER/lte-enb.c
modified: targets/RT/USER/lte-softmodem.c
modified: targets/RT/USER/lte-ue.c
modified: targets/RT/USER/msg_helper.c
modified: targets/RT/USER/msg_many.c
modified: targets/RT/USER/msg_many.h
modified: targets/RT/USER/rrh.c
modified: targets/RT/USER/rrh_gw.c
modified: targets/RT/USER/rrh_gw.h
modified: targets/RT/USER/rrh_gw_externs.h
modified: targets/RT/USER/rt_wrapper.c
modified: targets/RT/USER/rt_wrapper.h
modified: targets/RT/USER/sleeptest.c
modified: targets/RT/USER/stats.c
modified: targets/RT/USER/stats.h
modified: targets/RT/USER/synctest.c
modified: targets/SIMU/PROC/Process.c
modified: targets/SIMU/PROC/Process.h
modified: targets/SIMU/PROC/Tsync.h
modified: targets/SIMU/PROC/channel_sim_proc.c
modified: targets/SIMU/PROC/channel_sim_proc.h
modified: targets/SIMU/PROC/interface.h
modified: targets/SIMU/USER/channel_sim.c
modified: targets/SIMU/USER/cor_SF_sim.c
modified: targets/SIMU/USER/cor_SF_sim.h
modified: targets/SIMU/USER/event_handler.c
modified: targets/SIMU/USER/event_handler.h
modified: targets/SIMU/USER/init_lte.c
modified: targets/SIMU/USER/init_lte.h
modified: targets/SIMU/USER/oaisim.c
modified: targets/SIMU/USER/oaisim.h
modified: targets/SIMU/USER/oaisim_config.c
modified: targets/SIMU/USER/oaisim_config.h
modified: targets/SIMU/USER/oaisim_functions.c
modified: targets/SIMU/USER/oaisim_functions.h
modified: targets/SIMU/USER/oaisim_pad.c
modified: targets/SIMU/USER/phy_procedures_sim_form.c
modified: targets/SIMU/USER/phy_procedures_sim_form.h
modified: targets/SIMU/USER/sinr_sim.c
modified: targets/TEST/AT_COMMANDS/oaisim.c
modified: targets/TEST/PACKET_TRACER/pt.c
modified: targets/TEST/PDCP/test_pdcp.c
modified: targets/TEST/PDCP/test_pdcp.h
modified: targets/TEST/PDCP/test_util.h
modified: targets/TEST/PDCP/with_rlc/test_pdcp_rlc.c
modified: targets/TEST/RLC_AM_V9.3.0/oaisim.c
modified: targets/TEST/RLC_UM_V9.3.0/oaisim.c
modified: targets/TEST/ROHDE_SCHWARZ/EthernetRawCommand.cpp
modified: targets/TEST/ROHDE_SCHWARZ/TcpClient.cpp
modified: targets/TEST/ROHDE_SCHWARZ/TcpClient.h
2016-09-27 16:54:39 +02:00
Rohit Gupta
c034cc75df
Merge branch 'enhancement-10-harmony' into develop
2016-09-27 16:35:21 +02:00
S. Sandeep Kumar
52880e0c17
fix node_function in oaisim conf files
2016-09-27 18:53:05 +05:30
Cedric Roux
0d7039d36a
rename COPYING to LICENSE
2016-09-27 15:06:56 +02:00
Cedric Roux
7a724e7d2e
Merge remote-tracking branch 'origin/develop' into feature-131-new-license
...
Conflicts:
openair1/PHY/INIT/lte_init.c
openair1/PHY/LTE_TRANSPORT/dci_tools.c
openair1/PHY/LTE_TRANSPORT/ulsch_decoding.c
openair1/SCHED/phy_procedures_lte_eNb.c
openair1/SCHED/phy_procedures_lte_ue.c
openair1/SIMULATION/LTE_PHY/dlsim.c
openair1/SIMULATION/RF/adc.c
openair2/LAYER2/MAC/lte_transport_init.c
targets/RT/USER/lte-softmodem.c
targets/RT/USER/sched_dlsch.c
targets/RT/USER/sched_rx_pdsch.c
targets/RT/USER/sched_ulsch.c
targets/SIMU/USER/oaisim.c
2016-09-27 15:05:00 +02:00
Cedric Roux
f06dd02fe8
change COPYING to the new license
2016-09-27 14:36:06 +02:00
fnabet
679e7f6d40
Merge branch 'develop' into develop1B
2016-09-27 14:29:47 +02:00
S. Sandeep Kumar
2c45e04951
add static to the declaration of inline in PHY/defs.h
2016-09-27 15:46:34 +05:30
calvin wang
8ce73e5a7e
L2 stabilization BSR fertilization
2016-09-27 17:08:17 +08:00
Cedric Roux
e08e2577f5
hotfix: bad copy from userspace by ExpressMIMO2 kernel driver
...
The ExpressMIMO2 kernel driver did not use proper mechanisms
to copy from user space.
It is very surprising that it ever worked at all...
This commit is a quick fix. It is not the end of the story
and some more work may be needed if things don't work.
The remaining issue is that we pass pointer addresses to the
kernel as 32 bits values, but pointers are 64 bits values
(on x86_64, our supported platform). Some checks have been
put in place to detect if upper 32 bits of a pointer are
not 0 and print a strong error message in case of problem,
but no clean solution has been implemented.
2016-09-27 10:57:03 +02:00
Rohit Gupta
7361e74eb9
Merge branch 'enhancement-10-harmony' into develop
2016-09-27 10:40:03 +02:00
Rohit Gupta
f80617601d
Merge branch 'develop'
2016-09-27 10:39:46 +02:00
Rohit Gupta
33fddd3a9a
Merge branch 'develop' into enhancement-10-harmony
2016-09-27 10:39:28 +02:00
Rohit Gupta
460f01f6d3
Gitlab CI test case modified file + disable cpu affinity
2016-09-27 10:38:13 +02:00
Raymond Knopp
ff90a54ad9
bugfix for 4096 and 8192-point dfts.
2016-09-26 12:08:33 -07:00
Rohit Gupta
265a2d01bd
update USRP config files with calibration verified
2016-09-26 19:08:11 +02:00
Florian Kaltenberger
784c4e4941
adding missing symbol to octave tools
2016-09-26 17:19:51 +02:00
Rohit Gupta
da100fb693
add NTP for synch time between test setup machines
2016-09-26 14:21:35 +02:00
Rohit Gupta
b1fc862b9b
Merge branch 'enhancement-10-harmony' of gitlab.eurecom.fr:oai/openairinterface5g into enhancement-10-harmony
2016-09-26 14:18:34 +02:00
Rohit Gupta
2d3333dd6b
Gitlab CI: fix for cleaning memory only when critically low
2016-09-26 14:13:32 +02:00
Rohit Gupta
c7ae754066
compilation fix for pbchsim
2016-09-26 13:12:34 +02:00
Rohit Gupta
ce9c87026d
minor compilation fixes to LMSSDR driver
2016-09-26 13:05:48 +02:00
Rohit Gupta
2f00edeb8e
minor compilation fixes to BladeRF driver
2016-09-26 12:53:50 +02:00
Florian Kaltenberger
e94eb6673c
moving hastable into other directory and adding OAI license
2016-09-25 16:29:12 +02:00
Florian Kaltenberger
cc6926c559
removing duplicate files
2016-09-25 16:13:58 +02:00
Raymond Knopp
3124cb2c00
more fixes for oaisim, TM2.
2016-09-25 14:53:16 +02:00
Raymond Knopp
7df5c381fd
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-24 22:04:19 -07:00
Raymond Knopp
829ee59707
fixes for oaisim, testing TM2
2016-09-24 22:03:35 -07:00
Rohit Gupta
e584ce06c4
Gitlab CI:minor type in python script
2016-09-24 21:16:10 +02:00
Rohit Gupta
a4d3ec8dc4
Gitlab CI:minor fix to log directory creation
2016-09-24 21:14:31 +02:00
Rohit Gupta
2098dcdd0a
Gitlab CI: minor fix to how processes are terminated
2016-09-24 21:06:19 +02:00
Rohit Gupta
1edceeb6ea
config files fix for new params in enhancement-10-harmony branch
2016-09-24 19:58:24 +02:00
Rohit Gupta
574fbd661c
activate TX path of UE
2016-09-23 16:38:20 +02:00
Raymond Knopp
7c9f9763e8
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-23 02:39:02 +02:00
Raymond Knopp
5e7f007009
fixed --single-thread flag (when not set)
2016-09-23 02:08:52 +02:00
Rohit Gupta
23822ea203
send SIGINT before processes are killed in test setup
2016-09-22 18:55:14 +02:00
Rohit Gupta
5b489d530d
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-22 18:37:01 +02:00
Rohit Gupta
29fac70eb6
minor fix pthread_create call
2016-09-22 18:36:35 +02:00
Raymond Knopp
19818393e6
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-22 16:23:30 +02:00
Raymond Knopp
e5b643d03c
updates for UE with USRP
2016-09-22 16:22:55 +02:00
Rohit Gupta
fea3c34b58
minor fix to UE logging for test setup
2016-09-22 16:03:11 +02:00
Rohit Gupta
898774d68a
minor compilation fix
2016-09-21 19:08:25 +02:00
Rohit Gupta
41b80a11d0
Merge from develop
2016-09-21 18:27:24 +02:00
Raymond Knopp
7af3d98fd9
bugfix in ulsch_decoding. removal of logging in pucch.c and usrp_lib.cpp.
2016-09-21 17:23:50 +02:00
lukashov
e202953ccb
1.Fixing llr scaling for TM1 and TM2 in dlsch_demodulation.c
...
2.Fixing modulation for TM2 in dlsch_modulation.c
The branch now passes dlsim tests.
2016-09-21 11:51:16 +02:00
luhan wang
7e6b0c34d2
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-21 09:18:45 +02:00
luhan wang
094f439626
comment in phy_procedures_lte_eNb.c
2016-09-21 09:18:31 +02:00
Raymond Knopp
f05013a287
real changes for L1 threading. previous was bogus
2016-09-20 16:55:16 +02:00
Raymond Knopp
8d15dfe894
small bugs for lte-softmodem with parallel threads in L1
2016-09-20 07:57:27 -07:00
Raymond Knopp
43f96a0eac
finishing merge with develop
2016-09-19 14:13:11 -07:00
Wilson W.K. Thong
754cab7ec4
added SFN to wireshark logging output
...
Conflicts:
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
openair2/LAYER2/MAC/ue_procedures.c
2016-09-19 15:08:50 +08:00
Raymond Knopp
7678f88a47
Merge branch 'develop' into enhancement-10-harmony
...
Conflicts:
cmake_targets/autotests/test_case_list.xml
openair1/PHY/INIT/lte_init.c
openair1/PHY/INIT/lte_param_init.c
openair1/PHY/LTE_TRANSPORT/pucch.c
openair1/SIMULATION/LTE_PHY/pdcchsim.c
openair2/ENB_APP/enb_config.h
openair2/RRC/LITE/rrc_eNB.c
targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.band7.generic.oaisim.local_no_mme.conf
targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.band7.tm1.usrpb210.conf
targets/RT/USER/lte-softmodem.c
targets/SIMU/USER/init_lte.c
targets/SIMU/USER/oaisim.c
targets/SIMU/USER/oaisim_functions.c
2016-09-18 22:16:29 -07:00
Wilson W.K. Thong
95077bae4f
removed words 'wilson' from src
2016-09-19 12:01:16 +08:00
Wilson W.K. Thong
1de77c7a4e
changed so USRP also uses the piece of codes EXMIMO is uing in setting TA=624 when it is TDD
...
(cherry picked from commit a75dbc4156ed4e216145f1deb81c6e04c1cddf02)
2016-09-19 12:00:39 +08:00
Wilson W.K. Thong
6feb848ebe
removed all 'wilson' and 'ASTRI' words from comments
...
Conflicts:
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
openair2/LAYER2/RLC/rlc_rrc.c
2016-09-19 11:53:55 +08:00
Wilson W.K. Thong
19c81e741e
fixed hard-code DRB-ID<->LC-ID mapping (DRB-ID = LC-ID - 2) so they are not fully configurable
...
fixed hard-code default DRB-ID (1) so it is now fully configurable
(cherry picked from commit 4499124853b8985c3f157721997125370f1ca475)
Conflicts:
openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c
Conflicts:
openair2/LAYER2/PDCP_v10.1.0/pdcp.c
2016-09-19 11:53:55 +08:00
Wilson W.K. Thong
7e2c8e39f8
fixed oaisim build failed with the new KeNB refresh request message from NAS -> AS
2016-09-19 11:32:46 +08:00
Wilson W.K. Thong
fe2b7d80d3
removed 'wilson' from the codes
2016-09-19 11:32:46 +08:00
Wilson W.K. Thong
6b48fd6380
** new procedure - refresh kENB from NAS -> AS **
...
added flow to refresh KeNB key in RRC on receiving S1AP-InitialContextSetup
added flow to configure PDCP security mode
enabled filling in the PDCP MAC code during and after RRC-SMC procedure
(cherry picked from commit 898cd5c45aedb27625d73352568211b4467c8dd9)
2016-09-19 11:32:46 +08:00
Raymond Knopp
b8a37a34cf
pucch format 2/2a/2b UE TX
2016-09-17 14:55:26 -07:00
Raymond Knopp
2d73663bc6
modifications for odd N_RB_DL in dlsch_modulation.c
2016-09-15 10:03:50 -07:00
lukashov
54bce4155c
Merge branch 'develop' into feature-59-tm4
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/dlsch_modulation.c
2016-09-15 14:33:49 +02:00
lukashov
856bb3abe9
Fixing previous commit.
2016-09-15 13:51:19 +02:00
Cedric Roux
3d88f4ed2f
remove copyright notice
...
All the *.c *.h and *.cpp files that have a eurecom copyright at
the head have been processed.
All other files (ie. those with other extensions) have not been touched.
Changes to be committed:
modified: common/utils/asn1_conversions.h
modified: common/utils/assertions.h
modified: common/utils/collection/hashtable/hashtable.c
modified: common/utils/collection/hashtable/hashtable.h
modified: common/utils/collection/hashtable/obj_hashtable.c
modified: common/utils/collection/hashtable/obj_hashtable.h
modified: common/utils/itti/assertions.h
modified: common/utils/itti/backtrace.c
modified: common/utils/itti/backtrace.h
modified: common/utils/itti/intertask_interface.c
modified: common/utils/itti/intertask_interface.h
modified: common/utils/itti/intertask_interface_dump.c
modified: common/utils/itti/intertask_interface_dump.h
modified: common/utils/itti/intertask_interface_init.h
modified: common/utils/itti/intertask_interface_types.h
modified: common/utils/itti/intertask_messages_def.h
modified: common/utils/itti/intertask_messages_types.h
modified: common/utils/itti/itti_types.h
modified: common/utils/itti/memory_pools.c
modified: common/utils/itti/memory_pools.h
modified: common/utils/itti/messages_def.h
modified: common/utils/itti/messages_types.h
modified: common/utils/itti/signals.c
modified: common/utils/itti/signals.h
modified: common/utils/itti/tasks_def.h
modified: common/utils/itti/timer.c
modified: common/utils/itti/timer.h
modified: common/utils/itti/timer_messages_def.h
modified: common/utils/itti/timer_messages_types.h
modified: common/utils/itti_analyzer/common/itti_types.h
modified: common/utils/itti_analyzer/common/logs.h
modified: common/utils/itti_analyzer/common/rc.h
modified: common/utils/itti_analyzer/itti_analyzer.c
modified: common/utils/itti_analyzer/libbuffers/buffers.c
modified: common/utils/itti_analyzer/libbuffers/buffers.h
modified: common/utils/itti_analyzer/libbuffers/file.c
modified: common/utils/itti_analyzer/libbuffers/file.h
modified: common/utils/itti_analyzer/libbuffers/socket.c
modified: common/utils/itti_analyzer/libbuffers/socket.h
modified: common/utils/itti_analyzer/libparser/array_type.c
modified: common/utils/itti_analyzer/libparser/array_type.h
modified: common/utils/itti_analyzer/libparser/enum_type.c
modified: common/utils/itti_analyzer/libparser/enum_type.h
modified: common/utils/itti_analyzer/libparser/enum_value_type.c
modified: common/utils/itti_analyzer/libparser/enum_value_type.h
modified: common/utils/itti_analyzer/libparser/field_type.c
modified: common/utils/itti_analyzer/libparser/field_type.h
modified: common/utils/itti_analyzer/libparser/file_type.c
modified: common/utils/itti_analyzer/libparser/file_type.h
modified: common/utils/itti_analyzer/libparser/fundamental_type.c
modified: common/utils/itti_analyzer/libparser/fundamental_type.h
modified: common/utils/itti_analyzer/libparser/intertask_contexts.h
modified: common/utils/itti_analyzer/libparser/pointer_type.c
modified: common/utils/itti_analyzer/libparser/pointer_type.h
modified: common/utils/itti_analyzer/libparser/reference_type.c
modified: common/utils/itti_analyzer/libparser/reference_type.h
modified: common/utils/itti_analyzer/libparser/struct_type.c
modified: common/utils/itti_analyzer/libparser/struct_type.h
modified: common/utils/itti_analyzer/libparser/typedef_type.c
modified: common/utils/itti_analyzer/libparser/typedef_type.h
modified: common/utils/itti_analyzer/libparser/types.c
modified: common/utils/itti_analyzer/libparser/types.h
modified: common/utils/itti_analyzer/libparser/union_type.c
modified: common/utils/itti_analyzer/libparser/union_type.h
modified: common/utils/itti_analyzer/libparser/xml_parse.c
modified: common/utils/itti_analyzer/libparser/xml_parse.h
modified: common/utils/itti_analyzer/libresolver/locate_root.c
modified: common/utils/itti_analyzer/libresolver/locate_root.h
modified: common/utils/itti_analyzer/libresolver/resolvers.c
modified: common/utils/itti_analyzer/libresolver/resolvers.h
modified: common/utils/itti_analyzer/libui/ui_callbacks.c
modified: common/utils/itti_analyzer/libui/ui_callbacks.h
modified: common/utils/itti_analyzer/libui/ui_filters.c
modified: common/utils/itti_analyzer/libui/ui_filters.h
modified: common/utils/itti_analyzer/libui/ui_interface.c
modified: common/utils/itti_analyzer/libui/ui_interface.h
modified: common/utils/itti_analyzer/libui/ui_main_screen.c
modified: common/utils/itti_analyzer/libui/ui_main_screen.h
modified: common/utils/itti_analyzer/libui/ui_menu_bar.c
modified: common/utils/itti_analyzer/libui/ui_menu_bar.h
modified: common/utils/itti_analyzer/libui/ui_notebook.c
modified: common/utils/itti_analyzer/libui/ui_notebook.h
modified: common/utils/itti_analyzer/libui/ui_notif_dlg.c
modified: common/utils/itti_analyzer/libui/ui_notif_dlg.h
modified: common/utils/itti_analyzer/libui/ui_notifications.c
modified: common/utils/itti_analyzer/libui/ui_notifications.h
modified: common/utils/itti_analyzer/libui/ui_signal_dissect_view.c
modified: common/utils/itti_analyzer/libui/ui_signal_dissect_view.h
modified: common/utils/itti_analyzer/libui/ui_tree_view.c
modified: common/utils/itti_analyzer/libui/ui_tree_view.h
modified: common/utils/msc/msc.c
modified: common/utils/msc/msc.h
modified: openair1/PHY/CODING/3gpplte.c
modified: openair1/PHY/CODING/3gpplte_sse.c
modified: openair1/PHY/CODING/3gpplte_turbo_decoder.c
modified: openair1/PHY/CODING/3gpplte_turbo_decoder_avx2_16bit.c
modified: openair1/PHY/CODING/3gpplte_turbo_decoder_sse.c
modified: openair1/PHY/CODING/3gpplte_turbo_decoder_sse_16bit.c
modified: openair1/PHY/CODING/3gpplte_turbo_decoder_sse_8bit.c
modified: openair1/PHY/CODING/TESTBENCH/ltetest.c
modified: openair1/PHY/CODING/TESTBENCH/pdcch_test.c
modified: openair1/PHY/CODING/TESTBENCH/viterbi_test.c
modified: openair1/PHY/CODING/ccoding_byte.c
modified: openair1/PHY/CODING/ccoding_byte_lte.c
modified: openair1/PHY/CODING/crc_byte.c
modified: openair1/PHY/CODING/defs.h
modified: openair1/PHY/CODING/extern.h
modified: openair1/PHY/CODING/extern_3GPPinterleaver.h
modified: openair1/PHY/CODING/lte_interleaver.h
modified: openair1/PHY/CODING/lte_interleaver2.h
modified: openair1/PHY/CODING/lte_interleaver_inline.h
modified: openair1/PHY/CODING/lte_rate_matching.c
modified: openair1/PHY/CODING/lte_segmentation.c
modified: openair1/PHY/CODING/rate_matching.c
modified: openair1/PHY/CODING/scrambler.h
modified: openair1/PHY/CODING/vars.h
modified: openair1/PHY/CODING/viterbi.c
modified: openair1/PHY/CODING/viterbi_lte.c
modified: openair1/PHY/INIT/defs.h
modified: openair1/PHY/INIT/extern.h
modified: openair1/PHY/INIT/init_top.c
modified: openair1/PHY/INIT/lte_init.c
modified: openair1/PHY/INIT/lte_parms.c
modified: openair1/PHY/INIT/vars.h
modified: openair1/PHY/LTE_ESTIMATION/adjust_gain.c
modified: openair1/PHY/LTE_ESTIMATION/defs.h
modified: openair1/PHY/LTE_ESTIMATION/extern.h
modified: openair1/PHY/LTE_ESTIMATION/filt96_32.h
modified: openair1/PHY/LTE_ESTIMATION/freq_equalization.c
modified: openair1/PHY/LTE_ESTIMATION/lte_adjust_sync.c
modified: openair1/PHY/LTE_ESTIMATION/lte_dl_channel_estimation.c
modified: openair1/PHY/LTE_ESTIMATION/lte_dl_channel_estimation_emos.c
modified: openair1/PHY/LTE_ESTIMATION/lte_dl_mbsfn_channel_estimation.c
modified: openair1/PHY/LTE_ESTIMATION/lte_eNB_measurements.c
modified: openair1/PHY/LTE_ESTIMATION/lte_est_freq_offset.c
modified: openair1/PHY/LTE_ESTIMATION/lte_sync_time.c
modified: openair1/PHY/LTE_ESTIMATION/lte_sync_timefreq.c
modified: openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
modified: openair1/PHY/LTE_ESTIMATION/lte_ul_channel_estimation.c
modified: openair1/PHY/LTE_ESTIMATION/pss6144.h
modified: openair1/PHY/LTE_ESTIMATION/vars.h
modified: openair1/PHY/LTE_REFSIG/defs.h
modified: openair1/PHY/LTE_REFSIG/lte_dl_cell_spec.c
modified: openair1/PHY/LTE_REFSIG/lte_dl_mbsfn.c
modified: openair1/PHY/LTE_REFSIG/lte_dl_uespec.c
modified: openair1/PHY/LTE_REFSIG/lte_gold.c
modified: openair1/PHY/LTE_REFSIG/lte_gold_mbsfn.c
modified: openair1/PHY/LTE_REFSIG/lte_ul_ref.c
modified: openair1/PHY/LTE_REFSIG/mod_table.h
modified: openair1/PHY/LTE_TRANSPORT/dci.c
modified: openair1/PHY/LTE_TRANSPORT/dci.h
modified: openair1/PHY/LTE_TRANSPORT/dci_tools.c
modified: openair1/PHY/LTE_TRANSPORT/defs.h
modified: openair1/PHY/LTE_TRANSPORT/dlsch_coding.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_decoding.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_modulation.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_scrambling.c
modified: openair1/PHY/LTE_TRANSPORT/dlsch_tbs.h
modified: openair1/PHY/LTE_TRANSPORT/dlsch_tbs_full.h
modified: openair1/PHY/LTE_TRANSPORT/drs_modulation.c
modified: openair1/PHY/LTE_TRANSPORT/extern.h
modified: openair1/PHY/LTE_TRANSPORT/group_hopping.c
modified: openair1/PHY/LTE_TRANSPORT/initial_sync.c
modified: openair1/PHY/LTE_TRANSPORT/lte_mcs.c
modified: openair1/PHY/LTE_TRANSPORT/mcs_tbs_tools.h
modified: openair1/PHY/LTE_TRANSPORT/pbch.c
modified: openair1/PHY/LTE_TRANSPORT/pcfich.c
modified: openair1/PHY/LTE_TRANSPORT/phich.c
modified: openair1/PHY/LTE_TRANSPORT/pilots.c
modified: openair1/PHY/LTE_TRANSPORT/pilots_mbsfn.c
modified: openair1/PHY/LTE_TRANSPORT/pmch.c
modified: openair1/PHY/LTE_TRANSPORT/power_control.c
modified: openair1/PHY/LTE_TRANSPORT/prach.c
modified: openair1/PHY/LTE_TRANSPORT/prach.h
modified: openair1/PHY/LTE_TRANSPORT/print_stats.c
modified: openair1/PHY/LTE_TRANSPORT/proto.h
modified: openair1/PHY/LTE_TRANSPORT/pss.c
modified: openair1/PHY/LTE_TRANSPORT/pucch.c
modified: openair1/PHY/LTE_TRANSPORT/rar_tools.c
modified: openair1/PHY/LTE_TRANSPORT/srs_modulation.c
modified: openair1/PHY/LTE_TRANSPORT/sss.c
modified: openair1/PHY/LTE_TRANSPORT/sss.h
modified: openair1/PHY/LTE_TRANSPORT/uci.h
modified: openair1/PHY/LTE_TRANSPORT/uci_tools.c
modified: openair1/PHY/LTE_TRANSPORT/ulsch_coding.c
modified: openair1/PHY/LTE_TRANSPORT/ulsch_decoding.c
modified: openair1/PHY/LTE_TRANSPORT/ulsch_demodulation.c
modified: openair1/PHY/LTE_TRANSPORT/ulsch_modulation.c
modified: openair1/PHY/LTE_TRANSPORT/vars.h
modified: openair1/PHY/MODULATION/defs.h
modified: openair1/PHY/MODULATION/extern.h
modified: openair1/PHY/MODULATION/kHz_7_5.h
modified: openair1/PHY/MODULATION/ofdm_mod.c
modified: openair1/PHY/MODULATION/prach625Hz.h
modified: openair1/PHY/MODULATION/slot_fep.c
modified: openair1/PHY/MODULATION/slot_fep_mbsfn.c
modified: openair1/PHY/MODULATION/slot_fep_ul.c
modified: openair1/PHY/MODULATION/ul_7_5_kHz.c
modified: openair1/PHY/MODULATION/vars.h
modified: openair1/PHY/TOOLS/8bit_rxdemux.c
modified: openair1/PHY/TOOLS/8bit_txmux.c
modified: openair1/PHY/TOOLS/angle.c
modified: openair1/PHY/TOOLS/cadd_sv.c
modified: openair1/PHY/TOOLS/cadd_vv.c
modified: openair1/PHY/TOOLS/cdot_prod.c
modified: openair1/PHY/TOOLS/cmult_sv.c
modified: openair1/PHY/TOOLS/cmult_vv.c
modified: openair1/PHY/TOOLS/costable.h
modified: openair1/PHY/TOOLS/dB_routines.c
modified: openair1/PHY/TOOLS/dB_routines.h
modified: openair1/PHY/TOOLS/defs.h
modified: openair1/PHY/TOOLS/extern.h
modified: openair1/PHY/TOOLS/file_output.c
modified: openair1/PHY/TOOLS/invSqrt.c
modified: openair1/PHY/TOOLS/log2_approx.c
modified: openair1/PHY/TOOLS/lte_dfts.c
modified: openair1/PHY/TOOLS/lte_phy_scope.c
modified: openair1/PHY/TOOLS/lte_phy_scope.h
modified: openair1/PHY/TOOLS/lut.c
modified: openair1/PHY/TOOLS/memory_routines.c
modified: openair1/PHY/TOOLS/signal_energy.c
modified: openair1/PHY/TOOLS/smbv.c
modified: openair1/PHY/TOOLS/smbv.h
modified: openair1/PHY/TOOLS/sqrt.c
modified: openair1/PHY/TOOLS/time_meas.c
modified: openair1/PHY/TOOLS/time_meas.h
modified: openair1/PHY/TOOLS/twiddle12288.h
modified: openair1/PHY/TOOLS/twiddle1536.h
modified: openair1/PHY/TOOLS/twiddle24576.h
modified: openair1/PHY/TOOLS/twiddle6144.h
modified: openair1/PHY/TOOLS/vars.h
modified: openair1/PHY/defs.h
modified: openair1/PHY/extern.h
modified: openair1/PHY/impl_defs_lte.h
modified: openair1/PHY/impl_defs_top.h
modified: openair1/PHY/sse_intrin.h
modified: openair1/PHY/types.h
modified: openair1/PHY/vars.h
modified: openair1/SCHED/defs.h
modified: openair1/SCHED/extern.h
modified: openair1/SCHED/phy_mac_stub.c
modified: openair1/SCHED/phy_procedures_emos.h
modified: openair1/SCHED/phy_procedures_lte_common.c
modified: openair1/SCHED/phy_procedures_lte_eNb.c
modified: openair1/SCHED/phy_procedures_lte_ue.c
modified: openair1/SCHED/pucch_pc.c
modified: openair1/SCHED/pusch_pc.c
modified: openair1/SCHED/rt_compat.h
modified: openair1/SCHED/vars.h
modified: openair1/SIMULATION/ETH_TRANSPORT/bypass_session_layer.c
modified: openair1/SIMULATION/ETH_TRANSPORT/defs.h
modified: openair1/SIMULATION/ETH_TRANSPORT/emu_transport.c
modified: openair1/SIMULATION/ETH_TRANSPORT/extern.h
modified: openair1/SIMULATION/ETH_TRANSPORT/multicast_link.c
modified: openair1/SIMULATION/ETH_TRANSPORT/multicast_link.h
modified: openair1/SIMULATION/ETH_TRANSPORT/netlink_init.c
modified: openair1/SIMULATION/ETH_TRANSPORT/pgm_link.c
modified: openair1/SIMULATION/ETH_TRANSPORT/pgm_link.h
modified: openair1/SIMULATION/ETH_TRANSPORT/proto.h
modified: openair1/SIMULATION/ETH_TRANSPORT/socket.c
modified: openair1/SIMULATION/ETH_TRANSPORT/socket.h
modified: openair1/SIMULATION/ETH_TRANSPORT/vars.h
modified: openair1/SIMULATION/LTE_PHY/LTE_Configuration.c
modified: openair1/SIMULATION/LTE_PHY/LTE_Configuration.h
modified: openair1/SIMULATION/LTE_PHY/dlsim.c
modified: openair1/SIMULATION/LTE_PHY/framegen.c
modified: openair1/SIMULATION/LTE_PHY/gpib_send.c
modified: openair1/SIMULATION/LTE_PHY/gpib_send.h
modified: openair1/SIMULATION/LTE_PHY/mbmssim.c
modified: openair1/SIMULATION/LTE_PHY/pbchsim.c
modified: openair1/SIMULATION/LTE_PHY/pdcchsim.c
modified: openair1/SIMULATION/LTE_PHY/prachsim.c
modified: openair1/SIMULATION/LTE_PHY/pucchsignalgegerator.h
modified: openair1/SIMULATION/LTE_PHY/pucchsignalgenerator.c
modified: openair1/SIMULATION/LTE_PHY/pucchsim.c
modified: openair1/SIMULATION/LTE_PHY/scansim.c
modified: openair1/SIMULATION/LTE_PHY/signalanalyzer.c
modified: openair1/SIMULATION/LTE_PHY/signalanalyzer.h
modified: openair1/SIMULATION/LTE_PHY/syncsim.c
modified: openair1/SIMULATION/LTE_PHY/test.c
modified: openair1/SIMULATION/LTE_PHY/ulsignalgenerator.c
modified: openair1/SIMULATION/LTE_PHY/ulsignalgenerator.h
modified: openair1/SIMULATION/LTE_PHY/ulsim.c
modified: openair1/SIMULATION/LTE_PHY/ulsim2.c
modified: openair1/SIMULATION/RF/adc.c
modified: openair1/SIMULATION/RF/dac.c
modified: openair1/SIMULATION/RF/defs.h
modified: openair1/SIMULATION/RF/rf.c
modified: openair1/SIMULATION/TOOLS/abstraction.c
modified: openair1/SIMULATION/TOOLS/ch_desc_proto.c
modified: openair1/SIMULATION/TOOLS/defs.h
modified: openair1/SIMULATION/TOOLS/gauss.c
modified: openair1/SIMULATION/TOOLS/llr_quantization.c
modified: openair1/SIMULATION/TOOLS/multipath_channel.c
modified: openair1/SIMULATION/TOOLS/multipath_tv_channel.c
modified: openair1/SIMULATION/TOOLS/random_channel.c
modified: openair1/SIMULATION/TOOLS/rangen_double.c
modified: openair1/SIMULATION/TOOLS/scm_corrmat.h
modified: openair1/SIMULATION/TOOLS/taus.c
modified: openair2/COMMON/as_message.h
modified: openair2/COMMON/commonDef.h
modified: openair2/COMMON/gtpv1_u_messages_def.h
modified: openair2/COMMON/gtpv1_u_messages_types.h
modified: openair2/COMMON/intertask_interface_conf.h
modified: openair2/COMMON/mac_messages_def.h
modified: openair2/COMMON/mac_messages_types.h
modified: openair2/COMMON/mac_primitives.h
modified: openair2/COMMON/mac_rlc_primitives.h
modified: openair2/COMMON/mac_rrc_primitives.h
modified: openair2/COMMON/messages_def.h
modified: openair2/COMMON/messages_types.h
modified: openair2/COMMON/nas_messages_def.h
modified: openair2/COMMON/nas_messages_types.h
modified: openair2/COMMON/networkDef.h
modified: openair2/COMMON/openair_defs.h
modified: openair2/COMMON/openair_types.h
modified: openair2/COMMON/pdcp_messages_def.h
modified: openair2/COMMON/pdcp_messages_types.h
modified: openair2/COMMON/phy_messages_def.h
modified: openair2/COMMON/phy_messages_types.h
modified: openair2/COMMON/platform_constants.h
modified: openair2/COMMON/platform_types.h
modified: openair2/COMMON/ral_messages_def.h
modified: openair2/COMMON/ral_messages_types.h
modified: openair2/COMMON/rlc_messages_def.h
modified: openair2/COMMON/rlc_messages_types.h
modified: openair2/COMMON/rrc_messages_def.h
modified: openair2/COMMON/rrc_messages_types.h
modified: openair2/COMMON/rrm_config_structs.h
modified: openair2/COMMON/rrm_constants.h
modified: openair2/COMMON/rtos_header.h
modified: openair2/COMMON/s1ap_messages_def.h
modified: openair2/COMMON/s1ap_messages_types.h
modified: openair2/COMMON/sctp_messages_def.h
modified: openair2/COMMON/sctp_messages_types.h
modified: openair2/COMMON/tasks_def.h
modified: openair2/COMMON/udp_messages_def.h
modified: openair2/COMMON/udp_messages_types.h
modified: openair2/COMMON/x2ap_messages_def.h
modified: openair2/COMMON/x2ap_messages_types.h
modified: openair2/DOCS/TEMPLATES/CODE/example_doxy.h
modified: openair2/ENB_APP/enb_app.c
modified: openair2/ENB_APP/enb_app.h
modified: openair2/ENB_APP/enb_config.c
modified: openair2/ENB_APP/enb_config.h
modified: openair2/LAYER2/MAC/config.c
modified: openair2/LAYER2/MAC/defs.h
modified: openair2/LAYER2/MAC/eNB_scheduler.c
modified: openair2/LAYER2/MAC/eNB_scheduler_RA.c
modified: openair2/LAYER2/MAC/eNB_scheduler_bch.c
modified: openair2/LAYER2/MAC/eNB_scheduler_dlsch.c
modified: openair2/LAYER2/MAC/eNB_scheduler_mch.c
modified: openair2/LAYER2/MAC/eNB_scheduler_primitives.c
modified: openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
modified: openair2/LAYER2/MAC/extern.h
modified: openair2/LAYER2/MAC/l1_helpers.c
modified: openair2/LAYER2/MAC/lte_transport_init.c
modified: openair2/LAYER2/MAC/main.c
modified: openair2/LAYER2/MAC/openair2_proc.c
modified: openair2/LAYER2/MAC/pre_processor.c
modified: openair2/LAYER2/MAC/proto.h
modified: openair2/LAYER2/MAC/ra_procedures.c
modified: openair2/LAYER2/MAC/rar_tools.c
modified: openair2/LAYER2/MAC/ue_procedures.c
modified: openair2/LAYER2/MAC/vars.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_control_primitive.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_control_primitives_proto_extern.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_netlink.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_primitives.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_primitives.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_proto_extern.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_security.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_sequence_manager.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_sequence_manager.h
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_thread.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_util.c
modified: openair2/LAYER2/PDCP_v10.1.0/pdcp_util.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_constants.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_entity.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_in_sdu.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_in_sdu.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_init.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_init.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_proto_extern.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_reassembly.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_reassembly.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_receiver.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_receiver.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_retransmit.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_retransmit.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_rx_list.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_rx_list.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_segment.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_segment.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_segments_holes.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_segments_holes.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_status_report.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_status_report.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_structs.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_test.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_test.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_poll_retransmit.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_poll_retransmit.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_reordering.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_reordering.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_status_prohibit.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_timer_status_prohibit.h
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_windows.c
modified: openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_windows.h
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm.c
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm.h
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm_entity.h
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm_init.c
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm_init.h
modified: openair2/LAYER2/RLC/TM_v9.3.0/rlc_tm_structs.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_constants.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_control_primitives.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_control_primitives.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_dar.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_dar.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_entity.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_fsm.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_fsm.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_reassembly.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_reassembly.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_receiver.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_receiver.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_segment.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_segment.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_structs.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_test.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_test.h
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_very_simple_test.c
modified: openair2/LAYER2/RLC/UM_v9.3.0/rlc_um_very_simple_test.h
modified: openair2/LAYER2/RLC/rlc.c
modified: openair2/LAYER2/RLC/rlc.h
modified: openair2/LAYER2/RLC/rlc_def.h
modified: openair2/LAYER2/RLC/rlc_def_lte.h
modified: openair2/LAYER2/RLC/rlc_mac.c
modified: openair2/LAYER2/RLC/rlc_mpls.c
modified: openair2/LAYER2/RLC/rlc_primitives.h
modified: openair2/LAYER2/RLC/rlc_rrc.c
modified: openair2/LAYER2/layer2_top.c
modified: openair2/LAYER2/openair2_proc.c
modified: openair2/LAYER2/register.c
modified: openair2/LAYER2/register.h
modified: openair2/NAS/DRIVER/CELLULAR/CTL_TOOL/nascell_ioctl.c
modified: openair2/NAS/DRIVER/CELLULAR/CTL_TOOL/nascell_ioctl.h
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_ascontrol.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_classifier.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_common.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_constant.h
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_device.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_iocontrol.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_iocontrol.h
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_netlink.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_proto.h
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_sap.h
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_tool.c
modified: openair2/NAS/DRIVER/CELLULAR/NASMT/nasmt_variables.h
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_ascontrol.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_classifier.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_common.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_constant.h
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_device.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_iocontrol.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_iocontrol.h
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_netlink.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_proto.h
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_sap.h
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_tool.c
modified: openair2/NAS/DRIVER/CELLULAR/NASRG/nasrg_variables.h
modified: openair2/NAS/DRIVER/CELLULAR/NETLTEST/netltest.c
modified: openair2/NAS/SIMU_CELLULAR/nas_simu_proto.h
modified: openair2/NAS/SIMU_CELLULAR/nasrg_simu_meas.c
modified: openair2/NAS/SIMU_CELLULAR/rrm_fifo_standalone.c
modified: openair2/NAS/nas_ue_task.h
modified: openair2/NETWORK_DRIVER/LITE/RB_TOOL/rb_tool.c
modified: openair2/NETWORK_DRIVER/LITE/classifier.c
modified: openair2/NETWORK_DRIVER/LITE/common.c
modified: openair2/NETWORK_DRIVER/LITE/constant.h
modified: openair2/NETWORK_DRIVER/LITE/device.c
modified: openair2/NETWORK_DRIVER/LITE/ioctl.c
modified: openair2/NETWORK_DRIVER/LITE/ioctl.h
modified: openair2/NETWORK_DRIVER/LITE/local.h
modified: openair2/NETWORK_DRIVER/LITE/netlink.c
modified: openair2/NETWORK_DRIVER/LITE/proto_extern.h
modified: openair2/NETWORK_DRIVER/LITE/sap.h
modified: openair2/NETWORK_DRIVER/LITE/tool.c
modified: openair2/NETWORK_DRIVER/MESH/RB_TOOL/rb_tool.c
modified: openair2/NETWORK_DRIVER/MESH/classifier.c
modified: openair2/NETWORK_DRIVER/MESH/common.c
modified: openair2/NETWORK_DRIVER/MESH/constant.h
modified: openair2/NETWORK_DRIVER/MESH/device.c
modified: openair2/NETWORK_DRIVER/MESH/ioctl.c
modified: openair2/NETWORK_DRIVER/MESH/ioctl.h
modified: openair2/NETWORK_DRIVER/MESH/local.h
modified: openair2/NETWORK_DRIVER/MESH/mesh.c
modified: openair2/NETWORK_DRIVER/MESH/netlink.c
modified: openair2/NETWORK_DRIVER/MESH/proto_extern.h
modified: openair2/NETWORK_DRIVER/MESH/rrc_nas_primitives.h
modified: openair2/NETWORK_DRIVER/MESH/sap.h
modified: openair2/NETWORK_DRIVER/MESH/tool.c
modified: openair2/NETWORK_DRIVER/UE_IP/common.c
modified: openair2/NETWORK_DRIVER/UE_IP/constant.h
modified: openair2/NETWORK_DRIVER/UE_IP/device.c
modified: openair2/NETWORK_DRIVER/UE_IP/local.h
modified: openair2/NETWORK_DRIVER/UE_IP/netlink.c
modified: openair2/NETWORK_DRIVER/UE_IP/proto_extern.h
modified: openair2/NETWORK_DRIVER/UE_IP/sap.h
modified: openair2/PHY_INTERFACE/defs.h
modified: openair2/PHY_INTERFACE/extern.h
modified: openair2/PHY_INTERFACE/mac_phy_primitives.c
modified: openair2/PHY_INTERFACE/mac_phy_primitives.h
modified: openair2/PHY_INTERFACE/vars.h
modified: openair2/RRC/L2_INTERFACE/openair_rrc_L2_interface.c
modified: openair2/RRC/L2_INTERFACE/openair_rrc_L2_interface.h
modified: openair2/RRC/LITE/L2_interface.c
modified: openair2/RRC/LITE/MESSAGES/asn1_msg.c
modified: openair2/RRC/LITE/MESSAGES/asn1_msg.h
modified: openair2/RRC/LITE/defs.h
modified: openair2/RRC/LITE/extern.h
modified: openair2/RRC/LITE/proto.h
modified: openair2/RRC/LITE/rrc_2_rrm_msg.c
modified: openair2/RRC/LITE/rrc_UE.c
modified: openair2/RRC/LITE/rrc_UE_ral.c
modified: openair2/RRC/LITE/rrc_UE_ral.h
modified: openair2/RRC/LITE/rrc_common.c
modified: openair2/RRC/LITE/rrc_config.c
modified: openair2/RRC/LITE/rrc_eNB.c
modified: openair2/RRC/LITE/rrc_eNB_GTPV1U.c
modified: openair2/RRC/LITE/rrc_eNB_GTPV1U.h
modified: openair2/RRC/LITE/rrc_eNB_S1AP.c
modified: openair2/RRC/LITE/rrc_eNB_S1AP.h
modified: openair2/RRC/LITE/rrc_eNB_UE_context.c
modified: openair2/RRC/LITE/rrc_eNB_UE_context.h
modified: openair2/RRC/LITE/rrc_eNB_ral.c
modified: openair2/RRC/LITE/rrc_eNB_ral.h
modified: openair2/RRC/LITE/rrc_rrm_interface.c
modified: openair2/RRC/LITE/rrc_rrm_interface.h
modified: openair2/RRC/LITE/rrc_types.h
modified: openair2/RRC/LITE/rrm_2_rrc_msg.c
modified: openair2/RRC/LITE/utils.c
modified: openair2/RRC/LITE/vars.h
modified: openair2/RRC/NAS/nas_config.c
modified: openair2/RRC/NAS/nas_config.h
modified: openair2/RRC/NAS/rb_config.c
modified: openair2/RRC/NAS/rb_config.h
modified: openair2/RRM_4_RRC_LITE/src/platform.h
modified: openair2/RRM_4_RRC_LITE/src/platform_constants.h
modified: openair2/RRM_4_RRC_LITE/src/platform_defines.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Asn1Utils.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Asn1Utils.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Command.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Command.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/DataRadioBearer.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/DataRadioBearer.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/ENodeB.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/ENodeB.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Exceptions.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/LogicalChannel.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/LogicalChannel.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Mobile.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Mobile.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/RadioBearer.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/RadioBearer.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/RadioResources.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/RadioResources.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/SignallingRadioBearer.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/SignallingRadioBearer.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Transaction.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Transaction.h
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Transactions.cpp
modified: openair2/RRM_4_RRC_LITE/src/radio_resources/Transactions.h
modified: openair2/RRM_4_RRC_LITE/src/rrm.cpp
modified: openair2/UTIL/AT_COMMANDS/parser.c
modified: openair2/UTIL/AT_COMMANDS/parser.h
modified: openair2/UTIL/BIGPHYS/bigphys.c
modified: openair2/UTIL/BIGPHYS/defs.h
modified: openair2/UTIL/CLI/cli.c
modified: openair2/UTIL/CLI/cli.h
modified: openair2/UTIL/CLI/cli_cmd.c
modified: openair2/UTIL/CLI/cli_if.h
modified: openair2/UTIL/CLI/cli_server.c
modified: openair2/UTIL/FIFO/pad_list.c
modified: openair2/UTIL/FIFO/pad_list.h
modified: openair2/UTIL/FIFO/types.h
modified: openair2/UTIL/LISTS/list.c
modified: openair2/UTIL/LOG/log.c
modified: openair2/UTIL/LOG/log.h
modified: openair2/UTIL/LOG/log_extern.h
modified: openair2/UTIL/LOG/log_if.h
modified: openair2/UTIL/LOG/vcd_signal_dumper.c
modified: openair2/UTIL/LOG/vcd_signal_dumper.h
modified: openair2/UTIL/MATH/crc_byte.c
modified: openair2/UTIL/MATH/oml.c
modified: openair2/UTIL/MATH/oml.h
modified: openair2/UTIL/MATH/random.c
modified: openair2/UTIL/MATH/random_proto_extern.h
modified: openair2/UTIL/MATH/taus.c
modified: openair2/UTIL/MEM/mem_block.c
modified: openair2/UTIL/MEM/mem_block.h
modified: openair2/UTIL/MEM/mem_mngt.c
modified: openair2/UTIL/MEM/mem_mngt_proto_extern.h
modified: openair2/UTIL/MEM/mem_pool.h
modified: openair2/UTIL/OCG/OCG.c
modified: openair2/UTIL/OCG/OCG.h
modified: openair2/UTIL/OCG/OCG_call_emu.h
modified: openair2/UTIL/OCG/OCG_config_mobi.c
modified: openair2/UTIL/OCG/OCG_config_mobi.h
modified: openair2/UTIL/OCG/OCG_create_dir.c
modified: openair2/UTIL/OCG/OCG_create_dir.h
modified: openair2/UTIL/OCG/OCG_detect_file.c
modified: openair2/UTIL/OCG/OCG_detect_file.h
modified: openair2/UTIL/OCG/OCG_extern.h
modified: openair2/UTIL/OCG/OCG_generate_report.c
modified: openair2/UTIL/OCG/OCG_generate_report.h
modified: openair2/UTIL/OCG/OCG_get_opt.c
modified: openair2/UTIL/OCG/OCG_get_opt.h
modified: openair2/UTIL/OCG/OCG_if.h
modified: openair2/UTIL/OCG/OCG_parse_XML.c
modified: openair2/UTIL/OCG/OCG_parse_XML.h
modified: openair2/UTIL/OCG/OCG_parse_filename.c
modified: openair2/UTIL/OCG/OCG_parse_filename.h
modified: openair2/UTIL/OCG/OCG_save_XML.c
modified: openair2/UTIL/OCG/OCG_save_XML.h
modified: openair2/UTIL/OCG/OCG_vars.h
modified: openair2/UTIL/OMG/TraCIConstants.h
modified: openair2/UTIL/OMG/client_traci_OMG.c
modified: openair2/UTIL/OMG/client_traci_OMG.h
modified: openair2/UTIL/OMG/common.c
modified: openair2/UTIL/OMG/defs.h
modified: openair2/UTIL/OMG/grid.c
modified: openair2/UTIL/OMG/grid.h
modified: openair2/UTIL/OMG/id_manager.c
modified: openair2/UTIL/OMG/id_manager.h
modified: openair2/UTIL/OMG/job.c
modified: openair2/UTIL/OMG/mobility_parser.c
modified: openair2/UTIL/OMG/mobility_parser.h
modified: openair2/UTIL/OMG/omg.c
modified: openair2/UTIL/OMG/omg.h
modified: openair2/UTIL/OMG/omg_constants.h
modified: openair2/UTIL/OMG/omg_hashtable.c
modified: openair2/UTIL/OMG/omg_hashtable.h
modified: openair2/UTIL/OMG/omg_vars.h
modified: openair2/UTIL/OMG/rwalk.c
modified: openair2/UTIL/OMG/rwalk.h
modified: openair2/UTIL/OMG/rwp.c
modified: openair2/UTIL/OMG/rwp.h
modified: openair2/UTIL/OMG/socket_traci_OMG.c
modified: openair2/UTIL/OMG/socket_traci_OMG.h
modified: openair2/UTIL/OMG/static.c
modified: openair2/UTIL/OMG/static.h
modified: openair2/UTIL/OMG/steadystaterwp.c
modified: openair2/UTIL/OMG/steadystaterwp.h
modified: openair2/UTIL/OMG/storage_traci_OMG.c
modified: openair2/UTIL/OMG/storage_traci_OMG.h
modified: openair2/UTIL/OMG/sumo.c
modified: openair2/UTIL/OMG/sumo.h
modified: openair2/UTIL/OMG/trace.c
modified: openair2/UTIL/OMG/trace.h
modified: openair2/UTIL/OMG/trace_hashtable.c
modified: openair2/UTIL/OMG/trace_hashtable.h
modified: openair2/UTIL/OMV/communicationthread.cpp
modified: openair2/UTIL/OMV/communicationthread.h
modified: openair2/UTIL/OMV/mywindow.cpp
modified: openair2/UTIL/OMV/mywindow.h
modified: openair2/UTIL/OMV/omv.cpp
modified: openair2/UTIL/OMV/openglwidget.cpp
modified: openair2/UTIL/OMV/openglwidget.h
modified: openair2/UTIL/OMV/structures.h
modified: openair2/UTIL/OPT/mac_pcap.h
modified: openair2/UTIL/OPT/opt.h
modified: openair2/UTIL/OPT/socket_sender.c
modified: openair2/UTIL/OPT/vars.h
modified: openair2/UTIL/OSA/osa_defs.h
modified: openair2/UTIL/OSA/osa_internal.h
modified: openair2/UTIL/OSA/osa_key_deriver.c
modified: openair2/UTIL/OSA/osa_snow3g.h
modified: openair2/UTIL/OSA/osa_stream_eea.c
modified: openair2/UTIL/OSA/osa_stream_eia.c
modified: openair2/UTIL/OTG/main.c
modified: openair2/UTIL/OTG/otg.c
modified: openair2/UTIL/OTG/otg.h
modified: openair2/UTIL/OTG/otg_config.h
modified: openair2/UTIL/OTG/otg_defs.h
modified: openair2/UTIL/OTG/otg_externs.h
modified: openair2/UTIL/OTG/otg_form.c
modified: openair2/UTIL/OTG/otg_form.h
modified: openair2/UTIL/OTG/otg_kpi.c
modified: openair2/UTIL/OTG/otg_kpi.h
modified: openair2/UTIL/OTG/otg_models.c
modified: openair2/UTIL/OTG/otg_models.h
modified: openair2/UTIL/OTG/otg_rx.c
modified: openair2/UTIL/OTG/otg_rx.h
modified: openair2/UTIL/OTG/otg_rx_socket.c
modified: openair2/UTIL/OTG/otg_rx_socket.h
modified: openair2/UTIL/OTG/otg_tx.c
modified: openair2/UTIL/OTG/otg_tx.h
modified: openair2/UTIL/OTG/otg_tx_socket.c
modified: openair2/UTIL/OTG/otg_tx_socket.h
modified: openair2/UTIL/OTG/otg_vars.h
modified: openair2/UTIL/OTG/traffic_config.h
modified: openair2/UTIL/TIMER/umts_timer.c
modified: openair2/UTIL/TIMER/umts_timer.h
modified: openair2/UTIL/TIMER/umts_timer_proto_extern.h
modified: openair2/UTIL/TIMER/umts_timer_struct.h
modified: openair2/UTIL/TRACE/fifo_printf.c
modified: openair2/UTIL/TRACE/fifo_printf.h
modified: openair2/UTIL/TRACE/fifo_printf_proto_extern.h
modified: openair2/UTIL/TRACE/print.h
modified: openair2/X2AP/x2ap.c
modified: openair2/X2AP/x2ap.h
modified: openair2/X2AP/x2ap_common.c
modified: openair2/X2AP/x2ap_common.h
modified: openair3/COMMON/common_types.h
modified: openair3/COMMON/gtpv1_u_messages_def.h
modified: openair3/COMMON/gtpv1_u_messages_types.h
modified: openair3/COMMON/intertask_interface_conf.h
modified: openair3/COMMON/messages_def.h
modified: openair3/COMMON/messages_types.h
modified: openair3/COMMON/nas_messages_def.h
modified: openair3/COMMON/nas_messages_types.h
modified: openair3/COMMON/s1ap_messages_def.h
modified: openair3/COMMON/s1ap_messages_types.h
modified: openair3/COMMON/sctp_messages_def.h
modified: openair3/COMMON/sctp_messages_types.h
modified: openair3/COMMON/security_types.h
modified: openair3/COMMON/tasks_def.h
modified: openair3/COMMON/udp_messages_def.h
modified: openair3/COMMON/udp_messages_types.h
modified: openair3/GTPV1-U/gtpv1u.h
modified: openair3/GTPV1-U/gtpv1u_eNB.c
modified: openair3/GTPV1-U/gtpv1u_eNB_defs.h
modified: openair3/GTPV1-U/gtpv1u_eNB_task.h
modified: openair3/GTPV1-U/gtpv1u_sgw_defs.h
modified: openair3/GTPV1-U/gtpv1u_task.c
modified: openair3/GTPV1-U/gtpv1u_teid_pool.c
modified: openair3/NAS/COMMON/API/NETWORK/as_message.c
modified: openair3/NAS/COMMON/API/NETWORK/l2_message.h
modified: openair3/NAS/COMMON/API/NETWORK/nas_message.c
modified: openair3/NAS/COMMON/API/NETWORK/nas_message.h
modified: openair3/NAS/COMMON/API/NETWORK/network_api.c
modified: openair3/NAS/COMMON/API/NETWORK/network_api.h
modified: openair3/NAS/COMMON/EMM/MSG/AttachAccept.c
modified: openair3/NAS/COMMON/EMM/MSG/AttachAccept.h
modified: openair3/NAS/COMMON/EMM/MSG/AttachComplete.c
modified: openair3/NAS/COMMON/EMM/MSG/AttachComplete.h
modified: openair3/NAS/COMMON/EMM/MSG/AttachReject.c
modified: openair3/NAS/COMMON/EMM/MSG/AttachReject.h
modified: openair3/NAS/COMMON/EMM/MSG/AttachRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/AttachRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationFailure.c
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationFailure.h
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationReject.c
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationReject.h
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationResponse.c
modified: openair3/NAS/COMMON/EMM/MSG/AuthenticationResponse.h
modified: openair3/NAS/COMMON/EMM/MSG/CsServiceNotification.c
modified: openair3/NAS/COMMON/EMM/MSG/CsServiceNotification.h
modified: openair3/NAS/COMMON/EMM/MSG/DetachAccept.c
modified: openair3/NAS/COMMON/EMM/MSG/DetachAccept.h
modified: openair3/NAS/COMMON/EMM/MSG/DetachRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/DetachRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/DownlinkNasTransport.c
modified: openair3/NAS/COMMON/EMM/MSG/DownlinkNasTransport.h
modified: openair3/NAS/COMMON/EMM/MSG/EmmInformation.c
modified: openair3/NAS/COMMON/EMM/MSG/EmmInformation.h
modified: openair3/NAS/COMMON/EMM/MSG/EmmStatus.c
modified: openair3/NAS/COMMON/EMM/MSG/EmmStatus.h
modified: openair3/NAS/COMMON/EMM/MSG/ExtendedServiceRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/ExtendedServiceRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/GutiReallocationCommand.c
modified: openair3/NAS/COMMON/EMM/MSG/GutiReallocationCommand.h
modified: openair3/NAS/COMMON/EMM/MSG/GutiReallocationComplete.c
modified: openair3/NAS/COMMON/EMM/MSG/GutiReallocationComplete.h
modified: openair3/NAS/COMMON/EMM/MSG/IdentityRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/IdentityRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/IdentityResponse.c
modified: openair3/NAS/COMMON/EMM/MSG/IdentityResponse.h
modified: openair3/NAS/COMMON/EMM/MSG/NASSecurityModeCommand.h
modified: openair3/NAS/COMMON/EMM/MSG/NASSecurityModeComplete.h
modified: openair3/NAS/COMMON/EMM/MSG/SecurityModeCommand.c
modified: openair3/NAS/COMMON/EMM/MSG/SecurityModeComplete.c
modified: openair3/NAS/COMMON/EMM/MSG/SecurityModeReject.c
modified: openair3/NAS/COMMON/EMM/MSG/SecurityModeReject.h
modified: openair3/NAS/COMMON/EMM/MSG/ServiceReject.c
modified: openair3/NAS/COMMON/EMM/MSG/ServiceReject.h
modified: openair3/NAS/COMMON/EMM/MSG/ServiceRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/ServiceRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateAccept.c
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateAccept.h
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateComplete.c
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateComplete.h
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateReject.c
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateReject.h
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateRequest.c
modified: openair3/NAS/COMMON/EMM/MSG/TrackingAreaUpdateRequest.h
modified: openair3/NAS/COMMON/EMM/MSG/UplinkNasTransport.c
modified: openair3/NAS/COMMON/EMM/MSG/UplinkNasTransport.h
modified: openair3/NAS/COMMON/EMM/MSG/emm_cause.h
modified: openair3/NAS/COMMON/EMM/MSG/emm_msg.c
modified: openair3/NAS/COMMON/EMM/MSG/emm_msg.h
modified: openair3/NAS/COMMON/EMM/MSG/emm_msgDef.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextAccept.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextAccept.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextReject.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextReject.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDedicatedEpsBearerContextRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextAccept.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextAccept.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextReject.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextReject.h
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/ActivateDefaultEpsBearerContextRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceAllocationReject.c
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceAllocationReject.h
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceAllocationRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceAllocationRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceModificationReject.c
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceModificationReject.h
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceModificationRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/BearerResourceModificationRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/DeactivateEpsBearerContextAccept.c
modified: openair3/NAS/COMMON/ESM/MSG/DeactivateEpsBearerContextAccept.h
modified: openair3/NAS/COMMON/ESM/MSG/DeactivateEpsBearerContextRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/DeactivateEpsBearerContextRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/EsmInformationRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/EsmInformationRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/EsmInformationResponse.c
modified: openair3/NAS/COMMON/ESM/MSG/EsmInformationResponse.h
modified: openair3/NAS/COMMON/ESM/MSG/EsmStatus.c
modified: openair3/NAS/COMMON/ESM/MSG/EsmStatus.h
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextAccept.c
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextAccept.h
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextReject.c
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextReject.h
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/ModifyEpsBearerContextRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/PdnConnectivityReject.c
modified: openair3/NAS/COMMON/ESM/MSG/PdnConnectivityReject.h
modified: openair3/NAS/COMMON/ESM/MSG/PdnConnectivityRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/PdnConnectivityRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/PdnDisconnectReject.c
modified: openair3/NAS/COMMON/ESM/MSG/PdnDisconnectReject.h
modified: openair3/NAS/COMMON/ESM/MSG/PdnDisconnectRequest.c
modified: openair3/NAS/COMMON/ESM/MSG/PdnDisconnectRequest.h
modified: openair3/NAS/COMMON/ESM/MSG/esm_cause.h
modified: openair3/NAS/COMMON/ESM/MSG/esm_msg.c
modified: openair3/NAS/COMMON/ESM/MSG/esm_msg.h
modified: openair3/NAS/COMMON/ESM/MSG/esm_msgDef.h
modified: openair3/NAS/COMMON/IES/AccessPointName.c
modified: openair3/NAS/COMMON/IES/AccessPointName.h
modified: openair3/NAS/COMMON/IES/AdditionalUpdateResult.c
modified: openair3/NAS/COMMON/IES/AdditionalUpdateResult.h
modified: openair3/NAS/COMMON/IES/AdditionalUpdateType.c
modified: openair3/NAS/COMMON/IES/AdditionalUpdateType.h
modified: openair3/NAS/COMMON/IES/ApnAggregateMaximumBitRate.c
modified: openair3/NAS/COMMON/IES/ApnAggregateMaximumBitRate.h
modified: openair3/NAS/COMMON/IES/AuthenticationFailureParameter.c
modified: openair3/NAS/COMMON/IES/AuthenticationFailureParameter.h
modified: openair3/NAS/COMMON/IES/AuthenticationParameterAutn.c
modified: openair3/NAS/COMMON/IES/AuthenticationParameterAutn.h
modified: openair3/NAS/COMMON/IES/AuthenticationParameterRand.c
modified: openair3/NAS/COMMON/IES/AuthenticationParameterRand.h
modified: openair3/NAS/COMMON/IES/AuthenticationResponseParameter.c
modified: openair3/NAS/COMMON/IES/AuthenticationResponseParameter.h
modified: openair3/NAS/COMMON/IES/CipheringKeySequenceNumber.c
modified: openair3/NAS/COMMON/IES/CipheringKeySequenceNumber.h
modified: openair3/NAS/COMMON/IES/Cli.c
modified: openair3/NAS/COMMON/IES/Cli.h
modified: openair3/NAS/COMMON/IES/CsfbResponse.c
modified: openair3/NAS/COMMON/IES/CsfbResponse.h
modified: openair3/NAS/COMMON/IES/DaylightSavingTime.c
modified: openair3/NAS/COMMON/IES/DaylightSavingTime.h
modified: openair3/NAS/COMMON/IES/DetachType.c
modified: openair3/NAS/COMMON/IES/DetachType.h
modified: openair3/NAS/COMMON/IES/DrxParameter.c
modified: openair3/NAS/COMMON/IES/DrxParameter.h
modified: openair3/NAS/COMMON/IES/EmergencyNumberList.c
modified: openair3/NAS/COMMON/IES/EmergencyNumberList.h
modified: openair3/NAS/COMMON/IES/EmmCause.c
modified: openair3/NAS/COMMON/IES/EmmCause.h
modified: openair3/NAS/COMMON/IES/EpsAttachResult.c
modified: openair3/NAS/COMMON/IES/EpsAttachResult.h
modified: openair3/NAS/COMMON/IES/EpsAttachType.c
modified: openair3/NAS/COMMON/IES/EpsAttachType.h
modified: openair3/NAS/COMMON/IES/EpsBearerContextStatus.c
modified: openair3/NAS/COMMON/IES/EpsBearerContextStatus.h
modified: openair3/NAS/COMMON/IES/EpsBearerIdentity.c
modified: openair3/NAS/COMMON/IES/EpsBearerIdentity.h
modified: openair3/NAS/COMMON/IES/EpsMobileIdentity.c
modified: openair3/NAS/COMMON/IES/EpsMobileIdentity.h
modified: openair3/NAS/COMMON/IES/EpsNetworkFeatureSupport.c
modified: openair3/NAS/COMMON/IES/EpsNetworkFeatureSupport.h
modified: openair3/NAS/COMMON/IES/EpsQualityOfService.c
modified: openair3/NAS/COMMON/IES/EpsQualityOfService.h
modified: openair3/NAS/COMMON/IES/EpsUpdateResult.c
modified: openair3/NAS/COMMON/IES/EpsUpdateResult.h
modified: openair3/NAS/COMMON/IES/EpsUpdateType.c
modified: openair3/NAS/COMMON/IES/EpsUpdateType.h
modified: openair3/NAS/COMMON/IES/EsmCause.c
modified: openair3/NAS/COMMON/IES/EsmCause.h
modified: openair3/NAS/COMMON/IES/EsmInformationTransferFlag.c
modified: openair3/NAS/COMMON/IES/EsmInformationTransferFlag.h
modified: openair3/NAS/COMMON/IES/EsmMessageContainer.c
modified: openair3/NAS/COMMON/IES/EsmMessageContainer.h
modified: openair3/NAS/COMMON/IES/GprsTimer.c
modified: openair3/NAS/COMMON/IES/GprsTimer.h
modified: openair3/NAS/COMMON/IES/GutiType.c
modified: openair3/NAS/COMMON/IES/GutiType.h
modified: openair3/NAS/COMMON/IES/IdentityType2.c
modified: openair3/NAS/COMMON/IES/IdentityType2.h
modified: openair3/NAS/COMMON/IES/ImeisvRequest.c
modified: openair3/NAS/COMMON/IES/ImeisvRequest.h
modified: openair3/NAS/COMMON/IES/KsiAndSequenceNumber.c
modified: openair3/NAS/COMMON/IES/KsiAndSequenceNumber.h
modified: openair3/NAS/COMMON/IES/LcsClientIdentity.c
modified: openair3/NAS/COMMON/IES/LcsClientIdentity.h
modified: openair3/NAS/COMMON/IES/LcsIndicator.c
modified: openair3/NAS/COMMON/IES/LcsIndicator.h
modified: openair3/NAS/COMMON/IES/LinkedEpsBearerIdentity.c
modified: openair3/NAS/COMMON/IES/LinkedEpsBearerIdentity.h
modified: openair3/NAS/COMMON/IES/LlcServiceAccessPointIdentifier.c
modified: openair3/NAS/COMMON/IES/LlcServiceAccessPointIdentifier.h
modified: openair3/NAS/COMMON/IES/LocationAreaIdentification.c
modified: openair3/NAS/COMMON/IES/LocationAreaIdentification.h
modified: openair3/NAS/COMMON/IES/MessageType.c
modified: openair3/NAS/COMMON/IES/MessageType.h
modified: openair3/NAS/COMMON/IES/MobileIdentity.c
modified: openair3/NAS/COMMON/IES/MobileIdentity.h
modified: openair3/NAS/COMMON/IES/MobileStationClassmark2.c
modified: openair3/NAS/COMMON/IES/MobileStationClassmark2.h
modified: openair3/NAS/COMMON/IES/MobileStationClassmark3.c
modified: openair3/NAS/COMMON/IES/MobileStationClassmark3.h
modified: openair3/NAS/COMMON/IES/MsNetworkCapability.c
modified: openair3/NAS/COMMON/IES/MsNetworkCapability.h
modified: openair3/NAS/COMMON/IES/MsNetworkFeatureSupport.c
modified: openair3/NAS/COMMON/IES/MsNetworkFeatureSupport.h
modified: openair3/NAS/COMMON/IES/NasKeySetIdentifier.c
modified: openair3/NAS/COMMON/IES/NasKeySetIdentifier.h
modified: openair3/NAS/COMMON/IES/NasMessageContainer.c
modified: openair3/NAS/COMMON/IES/NasMessageContainer.h
modified: openair3/NAS/COMMON/IES/NasRequestType.c
modified: openair3/NAS/COMMON/IES/NasRequestType.h
modified: openair3/NAS/COMMON/IES/NasSecurityAlgorithms.c
modified: openair3/NAS/COMMON/IES/NasSecurityAlgorithms.h
modified: openair3/NAS/COMMON/IES/NetworkName.c
modified: openair3/NAS/COMMON/IES/NetworkName.h
modified: openair3/NAS/COMMON/IES/Nonce.c
modified: openair3/NAS/COMMON/IES/Nonce.h
modified: openair3/NAS/COMMON/IES/PTmsiSignature.c
modified: openair3/NAS/COMMON/IES/PTmsiSignature.h
modified: openair3/NAS/COMMON/IES/PacketFlowIdentifier.c
modified: openair3/NAS/COMMON/IES/PacketFlowIdentifier.h
modified: openair3/NAS/COMMON/IES/PagingIdentity.c
modified: openair3/NAS/COMMON/IES/PagingIdentity.h
modified: openair3/NAS/COMMON/IES/PdnAddress.c
modified: openair3/NAS/COMMON/IES/PdnAddress.h
modified: openair3/NAS/COMMON/IES/PdnType.c
modified: openair3/NAS/COMMON/IES/PdnType.h
modified: openair3/NAS/COMMON/IES/PlmnList.c
modified: openair3/NAS/COMMON/IES/PlmnList.h
modified: openair3/NAS/COMMON/IES/ProcedureTransactionIdentity.c
modified: openair3/NAS/COMMON/IES/ProcedureTransactionIdentity.h
modified: openair3/NAS/COMMON/IES/ProtocolConfigurationOptions.c
modified: openair3/NAS/COMMON/IES/ProtocolConfigurationOptions.h
modified: openair3/NAS/COMMON/IES/ProtocolDiscriminator.c
modified: openair3/NAS/COMMON/IES/ProtocolDiscriminator.h
modified: openair3/NAS/COMMON/IES/QualityOfService.c
modified: openair3/NAS/COMMON/IES/QualityOfService.h
modified: openair3/NAS/COMMON/IES/RadioPriority.c
modified: openair3/NAS/COMMON/IES/RadioPriority.h
modified: openair3/NAS/COMMON/IES/SecurityHeaderType.c
modified: openair3/NAS/COMMON/IES/SecurityHeaderType.h
modified: openair3/NAS/COMMON/IES/ServiceType.c
modified: openair3/NAS/COMMON/IES/ServiceType.h
modified: openair3/NAS/COMMON/IES/ShortMac.c
modified: openair3/NAS/COMMON/IES/ShortMac.h
modified: openair3/NAS/COMMON/IES/SsCode.c
modified: openair3/NAS/COMMON/IES/SsCode.h
modified: openair3/NAS/COMMON/IES/SupportedCodecList.c
modified: openair3/NAS/COMMON/IES/SupportedCodecList.h
modified: openair3/NAS/COMMON/IES/TimeZone.c
modified: openair3/NAS/COMMON/IES/TimeZone.h
modified: openair3/NAS/COMMON/IES/TimeZoneAndTime.c
modified: openair3/NAS/COMMON/IES/TimeZoneAndTime.h
modified: openair3/NAS/COMMON/IES/TmsiStatus.c
modified: openair3/NAS/COMMON/IES/TmsiStatus.h
modified: openair3/NAS/COMMON/IES/TrackingAreaIdentity.c
modified: openair3/NAS/COMMON/IES/TrackingAreaIdentity.h
modified: openair3/NAS/COMMON/IES/TrackingAreaIdentityList.c
modified: openair3/NAS/COMMON/IES/TrackingAreaIdentityList.h
modified: openair3/NAS/COMMON/IES/TrafficFlowAggregateDescription.c
modified: openair3/NAS/COMMON/IES/TrafficFlowAggregateDescription.h
modified: openair3/NAS/COMMON/IES/TrafficFlowTemplate.c
modified: openair3/NAS/COMMON/IES/TrafficFlowTemplate.h
modified: openair3/NAS/COMMON/IES/TransactionIdentifier.c
modified: openair3/NAS/COMMON/IES/TransactionIdentifier.h
modified: openair3/NAS/COMMON/IES/UeNetworkCapability.c
modified: openair3/NAS/COMMON/IES/UeNetworkCapability.h
modified: openair3/NAS/COMMON/IES/UeRadioCapabilityInformationUpdateNeeded.c
modified: openair3/NAS/COMMON/IES/UeRadioCapabilityInformationUpdateNeeded.h
modified: openair3/NAS/COMMON/IES/UeSecurityCapability.c
modified: openair3/NAS/COMMON/IES/UeSecurityCapability.h
modified: openair3/NAS/COMMON/IES/VoiceDomainPreferenceAndUeUsageSetting.c
modified: openair3/NAS/COMMON/IES/VoiceDomainPreferenceAndUeUsageSetting.h
modified: openair3/NAS/COMMON/UTIL/OctetString.c
modified: openair3/NAS/COMMON/UTIL/OctetString.h
modified: openair3/NAS/COMMON/UTIL/TLVDecoder.c
modified: openair3/NAS/COMMON/UTIL/TLVDecoder.h
modified: openair3/NAS/COMMON/UTIL/TLVEncoder.c
modified: openair3/NAS/COMMON/UTIL/TLVEncoder.h
modified: openair3/NAS/COMMON/UTIL/device.c
modified: openair3/NAS/COMMON/UTIL/device.h
modified: openair3/NAS/COMMON/UTIL/memory.c
modified: openair3/NAS/COMMON/UTIL/memory.h
modified: openair3/NAS/COMMON/UTIL/nas_log.c
modified: openair3/NAS/COMMON/UTIL/nas_log.h
modified: openair3/NAS/COMMON/UTIL/nas_timer.c
modified: openair3/NAS/COMMON/UTIL/nas_timer.h
modified: openair3/NAS/COMMON/UTIL/parser.c
modified: openair3/NAS/COMMON/UTIL/parser.h
modified: openair3/NAS/COMMON/UTIL/socket.c
modified: openair3/NAS/COMMON/UTIL/socket.h
modified: openair3/NAS/COMMON/UTIL/stty.c
modified: openair3/NAS/COMMON/UTIL/tst/timer.c
modified: openair3/NAS/COMMON/securityDef.h
modified: openair3/NAS/COMMON/userDef.h
modified: openair3/NAS/TOOLS/network.h
modified: openair3/NAS/TOOLS/ue_data.c
modified: openair3/NAS/TOOLS/usim_data.c
modified: openair3/NAS/UE/API/USER/at_command.c
modified: openair3/NAS/UE/API/USER/at_command.h
modified: openair3/NAS/UE/API/USER/at_error.c
modified: openair3/NAS/UE/API/USER/at_error.h
modified: openair3/NAS/UE/API/USER/at_response.c
modified: openair3/NAS/UE/API/USER/at_response.h
modified: openair3/NAS/UE/API/USER/tst/at_parser.c
modified: openair3/NAS/UE/API/USER/user_api.c
modified: openair3/NAS/UE/API/USER/user_api.h
modified: openair3/NAS/UE/API/USER/user_indication.c
modified: openair3/NAS/UE/API/USER/user_indication.h
modified: openair3/NAS/UE/API/USIM/aka_functions.h
modified: openair3/NAS/UE/API/USIM/usim_api.c
modified: openair3/NAS/UE/API/USIM/usim_api.h
modified: openair3/NAS/UE/EMM/Attach.c
modified: openair3/NAS/UE/EMM/Authentication.c
modified: openair3/NAS/UE/EMM/Detach.c
modified: openair3/NAS/UE/EMM/EmmStatusHdl.c
modified: openair3/NAS/UE/EMM/Identification.c
modified: openair3/NAS/UE/EMM/IdleMode.c
modified: openair3/NAS/UE/EMM/IdleMode.h
modified: openair3/NAS/UE/EMM/LowerLayer.c
modified: openair3/NAS/UE/EMM/LowerLayer.h
modified: openair3/NAS/UE/EMM/SAP/EmmDeregistered.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredAttachNeeded.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredAttemptingToAttach.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredInitiated.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredLimitedService.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredNoCellAvailable.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredNoImsi.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredNormalService.c
modified: openair3/NAS/UE/EMM/SAP/EmmDeregisteredPlmnSearch.c
modified: openair3/NAS/UE/EMM/SAP/EmmNull.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegistered.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredAttemptingToUpdate.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredImsiDetachInitiated.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredInitiated.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredLimitedService.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredNoCellAvailable.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredNormalService.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredPlmnSearch.c
modified: openair3/NAS/UE/EMM/SAP/EmmRegisteredUpdateNeeded.c
modified: openair3/NAS/UE/EMM/SAP/EmmServiceRequestInitiated.c
modified: openair3/NAS/UE/EMM/SAP/EmmTrackingAreaUpdatingInitiated.c
modified: openair3/NAS/UE/EMM/SAP/emm_as.c
modified: openair3/NAS/UE/EMM/SAP/emm_as.h
modified: openair3/NAS/UE/EMM/SAP/emm_asDef.h
modified: openair3/NAS/UE/EMM/SAP/emm_esm.c
modified: openair3/NAS/UE/EMM/SAP/emm_esm.h
modified: openair3/NAS/UE/EMM/SAP/emm_esmDef.h
modified: openair3/NAS/UE/EMM/SAP/emm_fsm.c
modified: openair3/NAS/UE/EMM/SAP/emm_fsm.h
modified: openair3/NAS/UE/EMM/SAP/emm_recv.c
modified: openair3/NAS/UE/EMM/SAP/emm_recv.h
modified: openair3/NAS/UE/EMM/SAP/emm_reg.c
modified: openair3/NAS/UE/EMM/SAP/emm_reg.h
modified: openair3/NAS/UE/EMM/SAP/emm_regDef.h
modified: openair3/NAS/UE/EMM/SAP/emm_sap.c
modified: openair3/NAS/UE/EMM/SAP/emm_sap.h
modified: openair3/NAS/UE/EMM/SAP/emm_send.c
modified: openair3/NAS/UE/EMM/SAP/emm_send.h
modified: openair3/NAS/UE/EMM/SecurityModeControl.c
modified: openair3/NAS/UE/EMM/ServiceRequestHdl.c
modified: openair3/NAS/UE/EMM/TrackingAreaUpdate.c
modified: openair3/NAS/UE/EMM/emmData.h
modified: openair3/NAS/UE/EMM/emm_main.c
modified: openair3/NAS/UE/EMM/emm_main.h
modified: openair3/NAS/UE/EMM/emm_proc.h
modified: openair3/NAS/UE/ESM/DedicatedEpsBearerContextActivation.c
modified: openair3/NAS/UE/ESM/DefaultEpsBearerContextActivation.c
modified: openair3/NAS/UE/ESM/EpsBearerContextDeactivation.c
modified: openair3/NAS/UE/ESM/EsmStatusHdl.c
modified: openair3/NAS/UE/ESM/PdnConnectivity.c
modified: openair3/NAS/UE/ESM/PdnDisconnect.c
modified: openair3/NAS/UE/ESM/SAP/esm_recv.c
modified: openair3/NAS/UE/ESM/SAP/esm_recv.h
modified: openair3/NAS/UE/ESM/SAP/esm_sap.c
modified: openair3/NAS/UE/ESM/SAP/esm_sap.h
modified: openair3/NAS/UE/ESM/SAP/esm_sapDef.h
modified: openair3/NAS/UE/ESM/SAP/esm_send.c
modified: openair3/NAS/UE/ESM/SAP/esm_send.h
modified: openair3/NAS/UE/ESM/esmData.h
modified: openair3/NAS/UE/ESM/esm_ebr.c
modified: openair3/NAS/UE/ESM/esm_ebr.h
modified: openair3/NAS/UE/ESM/esm_ebr_context.c
modified: openair3/NAS/UE/ESM/esm_ebr_context.h
modified: openair3/NAS/UE/ESM/esm_ip.c
modified: openair3/NAS/UE/ESM/esm_main.c
modified: openair3/NAS/UE/ESM/esm_main.h
modified: openair3/NAS/UE/ESM/esm_proc.h
modified: openair3/NAS/UE/ESM/esm_pt.c
modified: openair3/NAS/UE/ESM/esm_pt.h
modified: openair3/NAS/UE/UEprocess.c
modified: openair3/NAS/UE/nas_itti_messaging.c
modified: openair3/NAS/UE/nas_itti_messaging.h
modified: openair3/NAS/UE/nas_network.c
modified: openair3/NAS/UE/nas_network.h
modified: openair3/NAS/UE/nas_parser.c
modified: openair3/NAS/UE/nas_parser.h
modified: openair3/NAS/UE/nas_proc.c
modified: openair3/NAS/UE/nas_proc.h
modified: openair3/NAS/UE/nas_ue_task.c
modified: openair3/NAS/UE/nas_user.c
modified: openair3/NAS/UE/nas_user.h
modified: openair3/S1AP/s1ap_common.c
modified: openair3/S1AP/s1ap_common.h
modified: openair3/S1AP/s1ap_eNB.c
modified: openair3/S1AP/s1ap_eNB.h
modified: openair3/S1AP/s1ap_eNB_context_management_procedures.c
modified: openair3/S1AP/s1ap_eNB_context_management_procedures.h
modified: openair3/S1AP/s1ap_eNB_decoder.c
modified: openair3/S1AP/s1ap_eNB_decoder.h
modified: openair3/S1AP/s1ap_eNB_default_values.h
modified: openair3/S1AP/s1ap_eNB_defs.h
modified: openair3/S1AP/s1ap_eNB_encoder.c
modified: openair3/S1AP/s1ap_eNB_encoder.h
modified: openair3/S1AP/s1ap_eNB_handlers.c
modified: openair3/S1AP/s1ap_eNB_handlers.h
modified: openair3/S1AP/s1ap_eNB_itti_messaging.c
modified: openair3/S1AP/s1ap_eNB_itti_messaging.h
modified: openair3/S1AP/s1ap_eNB_management_procedures.c
modified: openair3/S1AP/s1ap_eNB_management_procedures.h
modified: openair3/S1AP/s1ap_eNB_nas_procedures.c
modified: openair3/S1AP/s1ap_eNB_nas_procedures.h
modified: openair3/S1AP/s1ap_eNB_nnsf.c
modified: openair3/S1AP/s1ap_eNB_nnsf.h
modified: openair3/S1AP/s1ap_eNB_overload.c
modified: openair3/S1AP/s1ap_eNB_overload.h
modified: openair3/S1AP/s1ap_eNB_trace.c
modified: openair3/S1AP/s1ap_eNB_trace.h
modified: openair3/S1AP/s1ap_eNB_ue_context.c
modified: openair3/S1AP/s1ap_eNB_ue_context.h
modified: openair3/SCTP/sctp_common.c
modified: openair3/SCTP/sctp_common.h
modified: openair3/SCTP/sctp_default_values.h
modified: openair3/SCTP/sctp_eNB_defs.h
modified: openair3/SCTP/sctp_eNB_itti_messaging.c
modified: openair3/SCTP/sctp_eNB_itti_messaging.h
modified: openair3/SCTP/sctp_eNB_task.c
modified: openair3/SCTP/sctp_eNB_task.h
modified: openair3/SCTP/sctp_primitives_client.c
modified: openair3/SCTP/sctp_primitives_client.h
modified: openair3/SECU/kdf.c
modified: openair3/SECU/key_nas_deriver.c
modified: openair3/SECU/key_nas_encryption.c
modified: openair3/SECU/nas_stream_eea1.c
modified: openair3/SECU/nas_stream_eea2.c
modified: openair3/SECU/nas_stream_eia1.c
modified: openair3/SECU/nas_stream_eia2.c
modified: openair3/SECU/rijndael.h
modified: openair3/SECU/secu_defs.h
modified: openair3/SECU/snow3g.c
modified: openair3/SECU/snow3g.h
modified: openair3/TEST/EPC_TEST/generate_scenario.c
modified: openair3/TEST/EPC_TEST/generate_scenario.h
modified: openair3/TEST/EPC_TEST/play_scenario.c
modified: openair3/TEST/EPC_TEST/play_scenario.h
modified: openair3/TEST/EPC_TEST/play_scenario_decode.c
modified: openair3/TEST/EPC_TEST/play_scenario_display.c
modified: openair3/TEST/EPC_TEST/play_scenario_fsm.c
modified: openair3/TEST/EPC_TEST/play_scenario_parse.c
modified: openair3/TEST/EPC_TEST/play_scenario_s1ap.c
modified: openair3/TEST/EPC_TEST/play_scenario_s1ap_compare_ie.c
modified: openair3/TEST/EPC_TEST/play_scenario_s1ap_eNB_defs.h
modified: openair3/TEST/EPC_TEST/play_scenario_sctp.c
modified: openair3/TEST/oaisim_mme_client_test.c
modified: openair3/TEST/oaisim_mme_itti_test.c
modified: openair3/TEST/oaisim_mme_list_benchmark.c
modified: openair3/TEST/oaisim_mme_s1ap_test.c
modified: openair3/TEST/oaisim_mme_sctp_test.c
modified: openair3/TEST/oaisim_mme_test_s1c.c
modified: openair3/TEST/oaisim_mme_test_s1c.h
modified: openair3/TEST/oaisim_mme_test_s1c_s1ap.c
modified: openair3/TEST/oaisim_mme_test_s1c_s1ap.h
modified: openair3/TEST/oaisim_mme_test_s1c_scenario.c
modified: openair3/TEST/oaisim_mme_test_s1c_scenario.h
modified: openair3/TEST/oaisim_mme_test_s1c_scenario1.c
modified: openair3/TEST/test_aes128_cmac_encrypt.c
modified: openair3/TEST/test_aes128_ctr_decrypt.c
modified: openair3/TEST/test_aes128_ctr_encrypt.c
modified: openair3/TEST/test_kdf.c
modified: openair3/TEST/test_s1ap.c
modified: openair3/TEST/test_secu.c
modified: openair3/TEST/test_secu_kenb.c
modified: openair3/TEST/test_secu_knas.c
modified: openair3/TEST/test_secu_knas_encrypt_eea1.c
modified: openair3/TEST/test_secu_knas_encrypt_eea2.c
modified: openair3/TEST/test_secu_knas_encrypt_eia1.c
modified: openair3/TEST/test_secu_knas_encrypt_eia2.c
modified: openair3/TEST/test_secu_knas_stream_int.c
modified: openair3/UDP/udp_eNB_task.c
modified: openair3/UDP/udp_eNB_task.h
modified: openair3/UTILS/HASHTABLE/hashtable.c
modified: openair3/UTILS/HASHTABLE/hashtable.h
modified: openair3/UTILS/HASHTABLE/obj_hashtable.c
modified: openair3/UTILS/HASHTABLE/obj_hashtable.h
modified: openair3/UTILS/conversions.c
modified: openair3/UTILS/conversions.h
modified: openair3/UTILS/enum_string.c
modified: openair3/UTILS/enum_string.h
modified: openair3/UTILS/log.c
modified: openair3/UTILS/log.h
modified: openair3/UTILS/mcc_mnc_itu.c
modified: openair3/UTILS/mcc_mnc_itu.h
modified: openair3/UTILS/mme_config.c
modified: openair3/UTILS/mme_config.h
modified: openair3/UTILS/mme_default_values.h
modified: targets/ARCH/BLADERF/USERSPACE/LIB/bladerf_lib.c
modified: targets/ARCH/BLADERF/USERSPACE/LIB/bladerf_lib.h
modified: targets/ARCH/COMMON/common_lib.c
modified: targets/ARCH/COMMON/common_lib.h
modified: targets/ARCH/ETHERNET/USERSPACE/LIB/eth_raw.c
modified: targets/ARCH/ETHERNET/USERSPACE/LIB/eth_udp.c
modified: targets/ARCH/ETHERNET/USERSPACE/LIB/ethernet_lib.c
modified: targets/ARCH/ETHERNET/USERSPACE/LIB/ethernet_lib.h
modified: targets/ARCH/EXMIMO/DEFS/openair_device.h
modified: targets/ARCH/EXMIMO/DEFS/pcie_interface.h
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/defs.h
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/exmimo_fw.c
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/extern.h
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/fileops.c
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/irq.c
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/module_main.c
modified: targets/ARCH/EXMIMO/DRIVER/eurecom/vars.h
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/defs.h
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/exmimo_fw.c
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/extern.h
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/fileops.c
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/irq.c
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/module_main.c
modified: targets/ARCH/EXMIMO/DRIVER/exmimo3/vars.h
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_dev.c
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_drv.c
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_drv.h
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_fifos.c
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_ioctl.c
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_mmap.c
modified: targets/ARCH/EXMIMO/DRIVER/telecomparistech/em1_rw.c
modified: targets/ARCH/EXMIMO/USERSPACE/LIB/example.c
modified: targets/ARCH/EXMIMO/USERSPACE/LIB/gain_control.c
modified: targets/ARCH/EXMIMO/USERSPACE/LIB/gain_control.h
modified: targets/ARCH/EXMIMO/USERSPACE/LIB/openair0_lib.c
modified: targets/ARCH/EXMIMO/USERSPACE/LIB/openair0_lib.h
modified: targets/ARCH/EXMIMO/USERSPACE/OAI_FW_INIT/elf.h
modified: targets/ARCH/EXMIMO/USERSPACE/OAI_FW_INIT/elftypes.h
modified: targets/ARCH/EXMIMO/USERSPACE/OAI_FW_INIT/updatefw.c
modified: targets/ARCH/EXMIMO/USERSPACE/OAI_FW_INIT/updatefw.h
modified: targets/ARCH/LMSSDR/USERSPACE/LIB/lms_lib.cpp
modified: targets/ARCH/LMSSDR/USERSPACE/LIB/sodera_lib.cpp
modified: targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
modified: targets/COMMON/create_tasks.c
modified: targets/COMMON/create_tasks.h
modified: targets/RT/USER/TOOLS/thread_ipc.c
modified: targets/RT/USER/TOOLS/thread_ipc.h
modified: targets/RT/USER/UE_transport_IQ.c
modified: targets/RT/USER/condtest.c
modified: targets/RT/USER/eNB_transport_IQ.c
modified: targets/RT/USER/emos-raw.c
modified: targets/RT/USER/lte-softmodem.c
modified: targets/RT/USER/lte-ue.c
modified: targets/RT/USER/msg_many.h
modified: targets/RT/USER/rrh.c
modified: targets/RT/USER/rrh_gw.c
modified: targets/RT/USER/rrh_gw.h
modified: targets/RT/USER/rrh_gw_externs.h
modified: targets/RT/USER/rt_wrapper.c
modified: targets/RT/USER/rt_wrapper.h
modified: targets/RT/USER/sched_dlsch.c
modified: targets/RT/USER/sched_rx_pdsch.c
modified: targets/RT/USER/sched_ulsch.c
modified: targets/RT/USER/sleeptest.c
modified: targets/RT/USER/synctest.c
modified: targets/SIMU/PROC/Process.c
modified: targets/SIMU/PROC/Process.h
modified: targets/SIMU/PROC/Tsync.h
modified: targets/SIMU/PROC/channel_sim_proc.c
modified: targets/SIMU/PROC/channel_sim_proc.h
modified: targets/SIMU/PROC/interface.h
modified: targets/SIMU/USER/channel_sim.c
modified: targets/SIMU/USER/cor_SF_sim.c
modified: targets/SIMU/USER/cor_SF_sim.h
modified: targets/SIMU/USER/event_handler.c
modified: targets/SIMU/USER/event_handler.h
modified: targets/SIMU/USER/init_lte.c
modified: targets/SIMU/USER/init_lte.h
modified: targets/SIMU/USER/oaisim.c
modified: targets/SIMU/USER/oaisim.h
modified: targets/SIMU/USER/oaisim_config.c
modified: targets/SIMU/USER/oaisim_config.h
modified: targets/SIMU/USER/oaisim_functions.c
modified: targets/SIMU/USER/oaisim_functions.h
modified: targets/SIMU/USER/oaisim_pad.c
modified: targets/SIMU/USER/sinr_sim.c
2016-09-14 15:04:55 +02:00
Raymond Knopp
1e9687fa0b
some cleanup in dlsch_modulation prior to parallelization
2016-09-14 03:47:51 -07:00
Rohit Gupta
410dc2ae5f
blacklist TM2 TCP test cases
2016-09-13 13:27:58 +02:00
Rohit Gupta
af45734e50
Merge branch 'enhancement-16-tm_rrc_reconfig' into develop
2016-09-13 13:22:05 +02:00
Rohit Gupta
3e86219ee7
fix for TM2 config files
2016-09-12 11:25:55 +02:00
laurent
51c20a59f7
merge with harmony
2016-09-11 18:21:59 +02:00
Raymond Knopp
75a2c3cf66
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/ulsch_decoding.c
2016-09-11 13:31:38 +02:00
lukashov
577d62c63a
Changing round trial conditions in dlsim.
2016-09-10 11:55:14 +02:00
Raymond Knopp
862e480e75
nothing important
2016-09-10 11:19:56 +02:00
Raymond Knopp
4b0227998e
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-10 01:45:27 -07:00
Raymond Knopp
f329139f18
minor cleanup in ulsch_decoding.c. Some modifications to comments in impl_defs_lte.h.
2016-09-10 01:44:19 -07:00
Rohit Gupta
2e4aaad392
Merge branch 'develop' into enhancement-16-tm_rrc_reconfig
2016-09-09 20:34:37 +02:00
luhan wang
8fffd732cc
added const declarations to coefficients for FFT
2016-09-08 16:28:44 +02:00
Raymond Knopp
0da2c77ad0
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-08 16:24:20 +02:00
Rohit Gupta
12a304e65c
Merge branch '130-oai-ue-dft-segmentation-fault' into 'develop'
...
Resolve "OAI-UE, DFT segmentation fault"
Closes #130
See merge request !42
2016-09-08 15:15:35 +02:00
hbilel
a490f5c75d
Merge branch '130-oai-ue-dft-segmentation-fault' of https://gitlab.eurecom.fr/oai/openairinterface5g into 130-oai-ue-dft-segmentation-fault
2016-09-08 15:03:24 +02:00
hbilel
3514b24723
Fix UE-DFT segmentation fault: align rx_data buffer
2016-09-08 14:09:11 +02:00
Rohit Gupta
3e82759237
merge from develop
2016-09-06 20:30:10 +02:00
Rohit Gupta
f47f78ba55
addition of TM2 test cases
2016-09-06 20:26:37 +02:00
lukashov
5fda011043
1. Rician channel now operates with AoA 45 degrees.
...
2. Fixed a bug for HARQ rounds for TM1 frequency selective with PCE.
2016-09-05 12:36:09 +02:00
Cedric Roux
64cd0076ba
bugfix: print a warning when a configuration parameter is not found
...
If your configuration file does not contain a parameter
the softmodem only printed "Failed to parse eNB configuration file"
without telling you what parameter was not found.
This quick fix adds a warning in such cases.
It also exists at the first error rather than trying to
parse the rest of the configuration file.
2016-09-05 11:41:48 +02:00
Xenofon Foukas
e29524a5fe
Fixed bug when using DCCH2
2016-09-05 11:15:26 +03:00
Raymond Knopp
b8b2edb3a9
updates in ulsim for new multipath_channel declaration. Small optimization in dlsch_modulation.c
2016-09-03 12:52:28 -07:00
Raymond Knopp
e729036b9f
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-03 21:45:17 +02:00
Raymond Knopp
0da0ce36aa
added pch.c
2016-09-03 08:57:59 -07:00
Raymond Knopp
6d46b31b6d
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-03 08:50:35 -07:00
Raymond Knopp
de5ff85fd3
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-03 17:49:32 +02:00
Raymond Knopp
a205844d77
addition of paging in UE, modifications for dlsim
2016-09-03 08:49:14 -07:00
Raymond Knopp
4fe4ba28b3
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-09-03 17:45:29 +02:00
Raymond Knopp
e8e9402294
small changes for 20 MHz real-time operation
2016-09-03 17:45:08 +02:00
Xenofon Foukas
343f338d3f
Merge remote-tracking branch 'oai/develop' into oai-integration
...
Conflicts:
cmake_targets/CMakeLists.txt
maketags
openair2/RRC/LITE/rrc_eNB.c
2016-09-03 00:17:59 +03:00
S. Sandeep Kumar
a8fb38f40d
fix prach packet in if4p5 UDP
2016-09-02 13:18:47 +05:30
Raymond Knopp
e10b7e8162
RCC configuration files for IF4p5
2016-09-01 03:47:51 -07:00
Cedric Roux
85e562d0b9
hotfix: fix a silly bug
2016-09-01 12:18:19 +02:00
Raymond Knopp
12e9b05abc
change in a comment
2016-08-31 11:08:37 -07:00
Xiwen JIANG
5fc1f3e56f
libboost_system is only linked for USRP target now (was causing problems for EXMIMO2 target)
2016-08-31 14:46:36 +02:00
Florian Kaltenberger
c8e7e5900f
enabling deadline scheduler by default for EXMIMO2
2016-08-31 14:46:35 +02:00
Cedric Roux
55c83b00f9
hotfix: bug in rx_pucch
...
This hotfix does not change the processing at all.
At this point, stat_re == 0, so the behavior is the
same as before. But the code was wrong. There should
have been no test, it's a NACK, period.
2016-08-31 11:26:16 +02:00
Florian Kaltenberger
365276dc44
Merge branch 'enhancement-16-tm_rrc_reconfig' into 'develop'
...
Enhancement 16 tm rrc reconfig
This branch contains enhancements regarding signalling of the transmission mode
It also contains fixes for TM2, which now works with commercial phones
TM3 also works, but only with single layer
TM4 needs further improvements in uplink signalling (will be done in another branch)
All tests that pass for develop also pass for this branch (see https://gitlab.eurecom.fr/oai-internal/openairinterface5g/builds/560 )
See merge request !41
2016-08-31 10:32:51 +02:00
Rohit Gupta
09435e66c9
fixes for TM1/TM2 config files
2016-08-31 00:36:53 +02:00
Rohit Gupta
f8804fcbac
fix max throughput for TM2 tests
2016-08-30 17:17:44 +02:00
Xiwen JIANG
cf672ca016
temporary fix for exmimo2 build (no longer requires libboost) to be tested with USRP
2016-08-30 17:11:39 +02:00
Xiwen JIANG
6072a8b0ef
Merge branch 'feature-21-TM7' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-21-TM7
...
Conflicts:
targets/SIMU/USER/init_lte.c
targets/SIMU/USER/oaisim_functions.c
2016-08-30 16:22:18 +02:00
Florian Kaltenberger
eac26b014f
enabling deadline scheduler by default for EXMIMO2
2016-08-30 15:59:24 +02:00
Florian Kaltenberger
35893b74bc
Merge remote-tracking branch 'origin/develop' into enhancement-16-tm_rrc_reconfig
...
Conflicts:
openair2/RRC/LITE/rrc_eNB.c
targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.band7.tm1.usrpb210.conf
2016-08-30 15:53:46 +02:00
Florian Kaltenberger
f021d91ea1
blacklisting testcases 015508 015511 (lte-softmodem TM2 20MHz)
2016-08-30 15:44:34 +02:00
Florian Kaltenberger
cd938bd5c4
pdcch is now filled with dummy data (like it used to be) to enable better estimation of signal energy (also in unitary sims and oaisim)
2016-08-30 15:31:02 +02:00
Florian Kaltenberger
fc85f44f49
fixed a bug in Alamouti coding (introduced in 7bc37c5696)
2016-08-30 15:26:28 +02:00
Rohit Gupta
ac1c41f04f
Merge branch 'feature-44-dedicated-drb' into 'develop'
...
Feature 44 dedicated drb
See merge request !33
2016-08-30 14:13:58 +02:00
Navid Nikaein
e13155fa01
refine the gtp/pdcp logging
2016-08-30 12:15:11 +02:00
Navid Nikaein
feb361b4d0
update the logging when the pdcp instance is not configured
2016-08-30 11:30:01 +02:00
Florian Kaltenberger
7707bacc37
Merge branch 'enhancement-16-tm_rrc_reconfig' into feature-21-TM7
...
Conflicts:
openair1/PHY/INIT/lte_param_init.c
2016-08-29 11:26:55 +02:00
Florian Kaltenberger
ecdf87f1ea
Merge branch 'enhancement-16-tm_rrc_reconfig' into feature-59-tm4
2016-08-29 11:25:01 +02:00
Florian Kaltenberger
2129a58eae
Merge branch 'develop' into enhancement-16-tm_rrc_reconfig
2016-08-29 11:00:37 +02:00
Florian Kaltenberger
ba1f969bbe
changed scaling of rx_pdcch (was not working well for 2 rx antennas)
...
oaisim parameter -y is now UE rx antennas
minor fixes to unitary sims
2016-08-29 10:58:40 +02:00
Florian Kaltenberger
5852340506
some improvements too pdcchsim
2016-08-29 10:58:39 +02:00
Navid Nikaein
895775e52c
revert the amount of mem block to its previous value
2016-08-27 21:23:04 +02:00
Navid Nikaein
7eb57d4c1e
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-08-27 21:03:42 +02:00
Rohit Gupta
349f77ab88
Update lte_ul_channel_estimation.c for alignment issues
2016-08-26 15:55:11 +02:00
Rohit Gupta
af9ce91f12
Update .gitlab-ci.yml
2016-08-26 05:21:11 +02:00
Rohit Gupta
b263527816
Update .gitlab-ci.yml for manual build
2016-08-26 05:18:20 +02:00
Rohit Gupta
4f5d818065
minor syntax fix of uespec_procedures
2016-08-25 18:11:30 +02:00
Xiwen JIANG
1f8c702fbb
support more >1 EXMIMO2 cards
2016-08-25 17:44:16 +02:00
Rohit Gupta
9116065678
minor fix to usrp timing logging
2016-08-25 14:14:35 +02:00
Raymond Knopp
7525238f92
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-08-24 23:16:21 -07:00
Raymond Knopp
1309358bb5
changes for oaisim to function with new threading architecture and trx_read/trx_write emulation. Tested for 5/10 MHz TM1. Multiple-antenna mode fails.
2016-08-24 23:14:44 -07:00
Rohit Gupta
a4b600989c
Merge branch 'develop' into enhancement-10-harmony
2016-08-24 21:54:07 +02:00
Rohit Gupta
89dae7e6dd
Merge branch 'develop' into feature-44-dedicated-drb
2016-08-24 21:53:38 +02:00
Rohit Gupta
e435d2888a
added few scripts that need to be killed after test setup exists
2016-08-24 19:46:35 +02:00
Rohit Gupta
4930de3b7a
Merge branch 'develop' into feature-44-dedicated-drb
2016-08-24 04:45:48 +02:00
Rohit Gupta
82f7f52e82
fix to avoid killing python script
2016-08-24 04:42:17 +02:00
Rohit Gupta
f9cf8e5e6b
fix for script that kills old programs
2016-08-24 04:07:07 +02:00
Rohit Gupta
300fc152b1
kill programs only if they exist to avoid kill signal to main python script
2016-08-24 03:51:41 +02:00
Rohit Gupta
4b6f457361
bugfix for script to remove old programs
2016-08-24 02:57:51 +02:00
Rohit Gupta
af392d3488
Merge branch 'master' of gitlab.eurecom.fr:oai/openairinterface5g
2016-08-24 00:01:42 +02:00
Rohit Gupta
90e0f58ad3
Merge branch 'develop'
2016-08-24 00:01:38 +02:00
Rohit Gupta
d65c4a25a3
bugfix for script to kill old programs
2016-08-24 00:01:14 +02:00
Rohit Gupta
f764aea62d
logging for killing old programs
2016-08-23 22:46:03 +02:00
Rohit Gupta
fe1b334d97
loging when removing old programs
2016-08-23 22:25:30 +02:00
Rohit Gupta
4f96f0402d
Merge branch 'develop' into feature-44-dedicated-drb
2016-08-23 21:55:29 +02:00
Rohit Gupta
6266c55d0a
Merge branch 'develop' into enhancement-10-harmony
2016-08-23 21:53:02 +02:00
Rohit Gupta
f9c54ec7ad
Merge branch 'develop' into enhancement-16-tm_rrc_reconfig
2016-08-23 21:30:06 +02:00
Rohit Gupta
ec89448588
remove git config http.sslverify due to file locking errors
2016-08-23 21:25:47 +02:00
Florian Kaltenberger
804cf04180
updating testcases for oaisim
2016-08-23 21:24:34 +02:00
Rohit Gupta
03a46fa564
minor bugfix to kill script
2016-08-23 20:57:43 +02:00
Rohit Gupta
019c72dec0
Merge branch 'develop' into enhancement-16-tm_rrc_reconfig
2016-08-23 20:44:15 +02:00
Rohit Gupta
a4d08fb076
Merge branch 'develop' into feature-44-dedicated-drb
2016-08-23 20:39:10 +02:00
Rohit Gupta
84a6f9f4ca
kill old programs in test setup
2016-08-23 19:41:09 +02:00
Rohit Gupta
a1f30234da
fix syntax errors for TM2 test cases
2016-08-23 18:59:02 +02:00
Rohit Gupta
56db03f76b
Merge branch 'feature-44-dedicated-drb' of gitlab.eurecom.fr:oai/openairinterface5g into feature-44-dedicated-drb
2016-08-23 18:22:10 +02:00
Xiwen JIANG
fc1e26d074
add VCD by function name for beam precoding and do_ofdm_l
2016-08-23 18:21:45 +02:00
Rohit Gupta
de51b52b08
Merge branch 'develop' into feature-44-dedicated-drb
2016-08-23 18:15:17 +02:00
Rohit Gupta
d879a03a09
Merge branch 'enhancement-16-tm_rrc_reconfig' of gitlab.eurecom.fr:oai-internal/openairinterface5g into enhancement-16-tm_rrc_reconfig
2016-08-23 18:05:07 +02:00
Rohit Gupta
9cbbd59cb7
Merge branch 'develop' into enhancement-16-tm_rrc_reconfig
2016-08-23 18:03:55 +02:00
Rohit Gupta
57f7b88994
minor addition to reconfigure machines in test setup
2016-08-23 17:53:54 +02:00
Rohit Gupta
149668a995
Merge branch 'develop'
2016-08-23 17:40:25 +02:00
Rohit Gupta
219663a42d
fix for downloading linux headers when kernel is installed from sources
2016-08-23 17:40:02 +02:00
Rohit Gupta
6139d08de0
Remove nano from compilation machine list due to conflicting openair-cn installation.
2016-08-23 17:04:00 +02:00
Florian Kaltenberger
17a828e80f
Merge branch 'enhancement-16-tm_rrc_reconfig' into feature-59-tm4
2016-08-23 15:31:46 +02:00
Florian Kaltenberger
ab8a332d98
fixing pucchsim
2016-08-23 15:30:25 +02:00
Florian Kaltenberger
b8494221bd
Merge branch 'enhancement-16-tm_rrc_reconfig' into feature-21-TM7
...
Conflicts:
openair1/PHY/INIT/lte_init.c
openair1/PHY/INIT/lte_param_init.c
openair1/PHY/INIT/lte_parms.c
openair1/PHY/LTE_TRANSPORT/dlsch_modulation.c
openair2/RRC/LITE/MESSAGES/asn1_msg.c
openair2/RRC/LITE/defs.h
openair2/RRC/LITE/rrc_eNB.c
targets/RT/USER/lte-softmodem.c
targets/SIMU/USER/init_lte.c
2016-08-23 15:13:55 +02:00
Rohit Gupta
1108aa0df2
Merge branch 'enhancement-16-tm_rrc_reconfig' of gitlab.eurecom.fr:oai-internal/openairinterface5g into enhancement-16-tm_rrc_reconfig
2016-08-23 14:37:45 +02:00
Rohit Gupta
01df717ade
remove qseven from test setup
2016-08-23 14:36:25 +02:00
Rohit Gupta
b2e391af55
Merge branch 'develop' into enhancement-16-tm_rrc_reconfig
2016-08-23 14:35:33 +02:00
nikaeinn
94801f7966
add more memory blocks for RLC and remove some logs in S1AP
2016-08-23 13:29:38 +02:00
Florian Kaltenberger
235e693f5d
updating config files for autotests for TM2
2016-08-23 12:35:53 +02:00
Florian Kaltenberger
2656709fcb
Merge branch 'develop' into enhancement-16-tm_rrc_reconfig
2016-08-23 11:44:26 +02:00
Florian Kaltenberger
b635612305
Merge branch 'enhancement-16-tm_rrc_reconfig' into feature-59-tm4
2016-08-23 11:08:44 +02:00
Florian Kaltenberger
9bf890cc89
changed feedback mode for TM4
...
set CQI_report_periodic to <release/> (was NULL before)
use memcopy for configuration structure
2016-08-23 11:04:58 +02:00
Florian Kaltenberger
f7989c5ce9
adding scheduling for TM4 (fallback to Alamouti for the moment)
2016-08-23 10:41:28 +02:00
Rohit Gupta
ba9f88f7dc
Merge branch 'develop' into enhancement-10-harmony
2016-08-22 23:02:58 +02:00
Rohit Gupta
6d39287393
minor type for syntax error
2016-08-22 20:16:55 +02:00
Xiwen JIANG
394c4cab6a
antenna number bug fixed
2016-08-22 20:06:13 +02:00
Rohit Gupta
c73535b439
minor type for test_case_list.xml
2016-08-22 19:21:41 +02:00
Rohit Gupta
ea57f56466
merge selected commits from enhancement-10-harmony-rgu test branch
2016-08-22 19:18:58 +02:00
nikaeinn
022ab574d2
fix the issue with the number of pending mme/s1ap connections
2016-08-22 17:20:00 +02:00
Xiwen JIANG
fd068005df
cosmetic changes
2016-08-22 10:36:16 +02:00
Xiwen JIANG
f277acfef5
remove num_pdcch_symb from paramters of dp_OFDM_mod_l
2016-08-22 10:35:11 +02:00
Xiwen JIANG
bc9c4cfebc
do_OFDM_mod_rt to perform on each symbol
2016-08-22 10:33:43 +02:00
Florian Kaltenberger
c2e106fe86
Merge branch 'enhancement-16-tm_rrc_reconfig' into feature-59-tm4
2016-08-22 10:12:56 +02:00
Florian Kaltenberger
0b4759202e
added codebook subset restriction to antenna info in RRCConnectionReconfiguration message
2016-08-22 10:10:59 +02:00
Cedric Roux
4086c585d5
Merge branch 'bugfix-i17-s1ap-ue-capabilities' into 'develop'
...
Bugfix i17 s1ap ue capabilities
See merge request !39
2016-08-22 09:46:52 +02:00
Cedric Roux
99acedd0e7
Merge branch 'enhancement-i18-asn1c-from-gitlab' into 'develop'
...
download asn1c from oai gitlab
We need to test at least one attach by the UEs of the test setup, to check that the local asn1c is the same as the one from github we used so far.
I don't think we need to do lots of traffic, it's only about control plane (rrc, s1ap).
And of course see if compilation is still ok.
See merge request !40
2016-08-22 09:33:05 +02:00
Rohit Gupta
4f2e5d359a
minor fix for type for RRU/RCC compile tests
2016-08-20 01:33:48 +02:00
Rohit Gupta
48bab02f94
add compilation test cases for RRU/RCC NGFI
2016-08-20 01:02:43 +02:00
Florian Kaltenberger
7098429e3a
Merge branch 'enhancement-16-tm_rrc_reconfig' into feature-59-tm4
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/dlsch_modulation.c
openair2/RRC/LITE/rrc_eNB.c
targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.band7.usrpb210.conf
2016-08-19 16:12:36 +02:00
nikaeinn
aa95e740a3
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-08-19 15:47:49 +02:00
Florian Kaltenberger
4d49b5d22b
Merge branch 'develop' into feature-59-tm4
2016-08-19 11:33:30 +02:00
Florian Kaltenberger
62142b54ae
Merge branch 'develop' into enhancement-16-tm_rrc_reconfig
2016-08-19 11:32:36 +02:00
Florian Kaltenberger
7abe45d7d2
small fix in CMakeLists.txt to avoid inclusion of unwanted files
2016-08-19 11:30:38 +02:00
Florian Kaltenberger
b8b5815d94
small changes, mostly config files
2016-08-19 11:28:13 +02:00
Florian Kaltenberger
4891d600c8
fix in PDCCH for Alamouti coding
2016-08-19 11:23:13 +02:00
Rohit Gupta
060848c680
added gdb suppport for x310 tests
2016-08-19 10:00:24 +02:00
Florian Kaltenberger
786972a937
Merge branch 'enhancement-16-tm_rrc_reconfig' of https://gitlab.eurecom.fr/oai-internal/openairinterface5g into enhancement-16-tm_rrc_reconfig
2016-08-18 21:56:36 +02:00
Florian Kaltenberger
f60a27c327
intermediate commit - work in progress
2016-08-18 21:54:05 +02:00
Florian Kaltenberger
7bc37c5696
small fix for TM1 when used with >1 TX antennas
...
TM2 now takes rho_a and rho_b power scaling factors into account
2016-08-18 21:33:09 +02:00
Xiwen JIANG
1cbb2c5caa
memory allocation for calibration coefficients and dlsch ue spec bf weight
2016-08-18 19:08:51 +02:00
Xiwen JIANG
c590335798
Merge branch 'feature-21-TM7' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-21-TM7
2016-08-18 17:40:11 +02:00
Xiwen JIANG
0985080287
add tm7 tdd config file
2016-08-18 17:34:25 +02:00
Xiwen JIANG
e10ed0bec8
EXMIMO duplex mode always set to FDD
2016-08-18 17:30:12 +02:00
Xiwen JIANG
cc6ca6fc12
bug fixed for PSS and SSS generation
2016-08-18 17:29:03 +02:00
Cedric Roux
f4e97b50fa
download asn1c from oai gitlab
...
the official asn1c repository at github posed problems to
some people in the past. It's better to have it locally
for such a critical piece of the software.
2016-08-18 15:29:33 +02:00
Florian Kaltenberger
7b114b08db
adding functions to compute bf weights to dlsim
2016-08-18 14:22:14 +02:00
Cedric Roux
07b3408d6c
Merge remote-tracking branch 'origin/develop' into bugfix-i17-s1ap-ue-capabilities
2016-08-18 13:52:58 +02:00
Cedric Roux
4b32194719
fix internal issue 17
2016-08-18 13:03:42 +02:00
Florian Kaltenberger
341dde6729
Merge branch 'feature-21-TM7' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-21-TM7
2016-08-18 12:48:04 +02:00
Florian Kaltenberger
9f4a849115
added prototypes to compute beamforming weights
2016-08-18 12:46:02 +02:00
nikaeinn
bb02b07c0f
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-08-18 09:33:59 +02:00
Rohit Gupta
7dacb34879
Merge branch 'develop'
2016-08-17 22:34:27 +02:00
Rohit Gupta
d2cee7189a
Merge branch 'develop' of gitlab.eurecom.fr:oai/openairinterface5g into develop
2016-08-17 20:47:27 +02:00
ignasj
d19b10ae06
LimeSDR
2016-08-17 11:43:05 +03:00
Florian Kaltenberger
876cee3a2c
Merge branch 'develop' into enhancement-64-phy_test
...
Conflicts:
openair1/SCHED/phy_mac_stub.c
2016-08-16 16:21:11 +02:00
Florian Kaltenberger
3406aca2ce
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-08-16 15:47:59 +02:00
Rohit Gupta
8c1182c048
Merge branch 'develop'
2016-08-16 15:43:58 +02:00
Rohit Gupta
e1cdc46c67
fix for missing boost_system for RRH-GW
2016-08-16 15:43:46 +02:00
Rohit Gupta
07d2d9687a
Merge branch 'develop'
2016-08-16 15:27:27 +02:00
Rohit Gupta
65dedc4cd8
hotfix for missing boost_system library
2016-08-16 15:27:12 +02:00
Rohit Gupta
1edb989a46
Merge branch 'develop' of gitlab.eurecom.fr:oai/openairinterface5g into develop
2016-08-16 12:53:27 +02:00
Rohit Gupta
2b5e9287b7
added additional traces for gdb
2016-08-16 12:51:37 +02:00
Rohit Gupta
16d0345f0d
added trace for segmentation fault in log files
2016-08-16 12:47:24 +02:00
Rohit Gupta
7a60162bde
disable optimization for debug build
2016-08-16 12:39:03 +02:00
laurent
e1d57b5312
Merge branch 'enhancement-10-harmony' into enhancement-10-harmony-lts
2016-08-16 08:59:03 +02:00
Laurent Thomas
e1aed5af9a
fix nettle, gnutls to use latest API version, fix eth_raw interface with errno==EAGAIN
2016-08-16 08:42:35 +02:00
Rohit Gupta
c99a48d946
merge from develop
2016-08-14 23:12:58 +02:00
Rohit Gupta
97e51a25ed
minor fixes to test setup
2016-08-14 23:05:32 +02:00
Rohit Gupta
86fffa3caa
minor fix for git clone logging
2016-08-14 19:34:04 +02:00
Rohit Gupta
19d002af75
Gitlab CI: updated for new build machines
2016-08-14 17:55:08 +02:00
Rohit Gupta
12f76454f5
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-08-14 17:12:20 +02:00
Rohit Gupta
9f819158e6
Gitlab CI: git retry when cloning fails
2016-08-14 12:38:54 +02:00
Rohit Gupta
cde45da309
minor fix for git-retry logging
2016-08-14 12:37:04 +02:00
Rohit Gupta
d2d8290752
Gitlab CI: command to retry git clone in case of network failure
2016-08-14 12:03:00 +02:00
Rohit Gupta
47e0589aaf
Gitlab CI: minor fix to install Git
2016-08-14 11:33:10 +02:00
Rohit Gupta
be55d1be04
Gitlab CI: run tests with gdb support
2016-08-14 10:36:29 +02:00
Rohit Gupta
8788b311e9
added some helper message to lte-softmodem
2016-08-12 17:26:04 +02:00
Rohit Gupta
d88f671f4e
added new machines to Gitlab CI
2016-08-12 14:23:31 +02:00
Rohit Gupta
8d057b80e2
add helper for three quarter sampling for 20 MHz
2016-08-12 10:54:58 +02:00
Florian Kaltenberger
873eb05b37
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-08-12 09:41:39 +02:00
Xiwen JIANG
fdde582e92
bug fixed in pbch for nb_antennas_tx>1
2016-08-11 16:29:43 +02:00
Cedric Roux
8b732dc7e2
T: add a mac pdu -> wireshark replay tracer
...
This tracer takes the traces ENB_MAC_UE_DL_PDU_WITH_DATA
and ENB_MAC_UE_UL_PDU_WITH_DATA from a trace file
(as generated by the "record" tracer) and sends them
in UDP packets correctly formatted for wireshark to
dissect them.
One unresolved problem I face with my version of
wireshark (1.10.6) is that I don't get the frame number,
only subframe. See in the code to change the behavior
if you use a more recent version of wireshark.
You need to properly configure wireshark for it to work.
See $OPENAIR_DIR/openair2/UTIL/OPT/README.txt.
2016-08-11 12:49:37 +02:00
Anta Huang
f7bb8a964d
To get oaisim work with OAI EPC
...
- fix the run_enb_ue_virt_s1 script
- change the Ki value back to the one used
2016-08-11 12:18:46 +02:00
Cedric Roux
696d92f04d
bugfix: forgot to include T.h
2016-08-10 17:13:31 +02:00
Cedric Roux
3d64a195ef
T: add a trace (random access downlink msg4)
2016-08-10 17:09:15 +02:00
Anta Huang
a9262346b7
To get oaisim work with OAI EPC
...
- fix the run_enb_ue_virt_s1 script
- change the Ki value back to the one used
2016-08-10 10:38:17 +02:00
Raymond Knopp
857af54015
usrp 20 MHz on 30.72 master clock. fixed memory leak in prach.c for 20 MHz with 3/4 sampling. added default attributes to threads in lte-enb.c
2016-08-08 00:08:43 +02:00
Raymond Knopp
018fb07187
fixed affinity code (FH on CPU0, others on CPU 1-3)
2016-08-07 19:40:53 +02:00
Raymond Knopp
12801c5991
switch for parallel FEP on ulsim. Deactivated for real-time operation.
2016-08-07 19:25:50 +02:00
Raymond Knopp
5b9f4714a9
added unitary_defs.h
2016-08-07 09:51:01 -07:00
Raymond Knopp
e64af6597a
testing of low-level parallelization of FEP in eNodeB RX.
2016-08-07 09:47:42 -07:00
Laurent THOMAS
d14ed1d58c
merge with harmony main branch
2016-08-07 15:13:31 +02:00
Raymond Knopp
f52cbeeb95
update of ulsim to use phy_procedures
2016-08-07 06:00:54 -07:00
Raymond Knopp
bf220352da
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
targets/RT/USER/lte-enb.c
2016-08-06 20:49:08 +02:00
Raymond Knopp
f000cec33f
configuration file changes.
2016-08-06 20:47:50 +02:00
Raymond Knopp
a483534f9a
rru configuration files for if4p5 (50/100 PRBs). rru gtkwave configuration files.
2016-08-06 20:01:29 +02:00
Raymond Knopp
b9e550812a
addition of handling of UE list MAC when RRC cannot add a UE context.
2016-08-06 19:28:45 +02:00
Raymond Knopp
5055e3e688
bugfixing for single-thread and cleanup
2016-08-06 01:50:08 +02:00
Raymond Knopp
f3e084e005
single-thread.
2016-08-05 15:41:34 -07:00
Raymond Knopp
a0170b8e0f
more cleanup for lte-enb.c
2016-08-05 09:34:45 -07:00
Laurent THOMAS
6da3f494f4
update nettle to new interface, update deadline scheduler option (doesnt compile without this), update build/install script to use regular nettle and gnutls in ubuntu 16.04 (should also be fine with 14.04 up-to-date), update init_exmimo2 for ubuntu 16.04)
2016-08-05 15:26:36 +02:00
Raymond Knopp
66cd4fdb14
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-08-05 03:22:02 -07:00
Raymond Knopp
121e33e608
minor changes in dlsim.
2016-08-05 03:21:34 -07:00
Raymond Knopp
8014a94020
IF4p5 with UDP.
2016-08-05 09:58:57 +02:00
Rohit Gupta
3608e5bc9e
Gitlab CI: fix for 20MHz tests
2016-08-04 19:13:48 +02:00
Raymond Knopp
87768942d3
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-08-04 18:25:07 +02:00
Raymond Knopp
6e1d81bef3
band 38 tx gain exmimo2
2016-08-04 18:19:54 +02:00
Raymond Knopp
1ec0c5bf63
modifications for EXMIMO2 targets
2016-08-04 16:41:14 +02:00
Rohit Gupta
2efe981eb0
Merge from develop
2016-08-04 16:36:36 +02:00
Rohit Gupta
626583c159
updated handler for ctrl-C to sync filesystem
2016-08-04 16:14:21 +02:00
Rohit Gupta
630f2dd93e
Merge branch 'feature-34-test_framework' into develop
2016-08-04 15:53:32 +02:00
Raymond Knopp
f63ee88c89
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/prach.c
openair1/SCHED/phy_procedures_lte_eNb.c
targets/ARCH/ETHERNET/USERSPACE/LIB/ethernet_lib.c
targets/RT/USER/lte-enb.c
2016-08-04 01:54:18 +02:00
Raymond Knopp
af3bbe425e
modifications for RRC IF4p5
2016-08-04 01:14:33 +02:00
Raymond Knopp
240d8b9512
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-08-04 01:01:47 +02:00
Raymond Knopp
5056134772
debugging of IF4p5 RRU
2016-08-04 00:58:19 +02:00
Rohit Gupta
dc124abbad
remove nano from test setup
2016-08-03 21:27:38 +02:00
Rohit Gupta
714bae4ffd
minor fix for installation
2016-08-03 21:17:41 +02:00
Rohit Gupta
350465fdef
fix 20 MHz config file
2016-08-03 21:14:38 +02:00
Florian Kaltenberger
f565b9c22a
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-08-02 15:40:37 +02:00
Rohit Gupta
c0bc9727a7
Merge branch 'bugfix-122-build_helper_breaks_on_gnutls_downloading' into 'develop'
...
fix gnutls download (closes #122 )
Please merge this fix,
Regards,
Frédéric
See merge request !38
2016-08-01 22:50:14 +02:00
Raymond Knopp
1ef7ec8012
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-08-01 20:34:45 +02:00
Raymond Knopp
926324d951
debugging for IF4p5
2016-08-01 20:39:01 +02:00
Raymond Knopp
9ec462e880
debugging for IF4p5
2016-08-01 20:30:42 +02:00
Frédéric Leroy
dfe087a52e
fix gnutls download ( closes #122 )
2016-08-01 14:33:27 +02:00
Raymond Knopp
56e85db773
configuration files for RCC IF5 5,10 MHz
2016-07-31 21:30:13 +02:00
Raymond Knopp
f92a33b30e
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-07-31 21:24:45 +02:00
Raymond Knopp
b2c21c6246
configuration files for IF5 rru (5,10 MHz)
2016-07-31 21:19:26 +02:00
Raymond Knopp
4b6da53f6d
added timeout on ETHERNET recv
2016-07-31 19:41:31 +02:00
Raymond Knopp
2b3b0a1388
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-07-31 19:38:55 +02:00
Raymond Knopp
ec209bd43e
if5 modifications. Use of asynchronous RX thread for RCC->RRU IF5 link
2016-07-31 19:33:39 +02:00
Raymond Knopp
5817a62c37
vcd dumping for send/recv IF5
2016-07-31 17:02:43 +02:00
Raymond Knopp
80f9b33a34
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-07-31 15:50:17 +02:00
Raymond Knopp
2a621d319c
rcc if5 configuration file
2016-07-31 15:50:05 +02:00
Raymond Knopp
dbae061e72
modifications for if5
2016-07-31 15:31:45 +02:00
Rohit Gupta
eba25f0361
add nscd to disable ypbind/ypcall errors in test setup
2016-07-31 13:55:21 +02:00
Raymond Knopp
5309b71e94
more separation for RRU/RCC
2016-07-31 12:26:41 +02:00
Raymond Knopp
d6377f1acd
correction for RCC/RAU initialization
2016-07-31 10:41:09 +02:00
Raymond Knopp
025f56d28b
node function interfaces via function pointers. Suggestions from L. Thomas, B. Mongazon, C. Roux.
2016-07-31 10:28:56 +02:00
Rohit Gupta
c7a3944c53
Merge branch 'develop' into feature-44-dedicated-drb
2016-07-30 20:57:59 +02:00
Rohit Gupta
7d7b9ffc98
remove nano from test setup
2016-07-30 20:57:37 +02:00
Rohit Gupta
2bacd7c71a
disable error check for python log file
2016-07-30 20:47:21 +02:00
Rohit Gupta
05192acbb0
Merge branch 'develop' into feature-44-dedicated-drb
2016-07-30 20:44:23 +02:00
Cedric Roux
f33e9a7027
do not exit immediately in case of busy thread
...
5ms by default, easy to change (change the 10 in the loops)
if the behavior is worse than before, do git revert [commit ID]
2016-07-29 21:56:40 +02:00
Rohit Gupta
f9d43daa3a
bugfix
2016-07-29 11:39:24 +02:00
Florian Kaltenberger
a023de6e5d
Revert "mono-thread test"
...
This reverts commit 3f20ce7b87 .
it was mistakenly pushed to develop
2016-07-29 10:38:30 +02:00
Cedric Roux
56014444e2
bugfix
...
thanks to Supreeth Herle for reporting.
2016-07-29 09:54:23 +02:00
Cedric Roux
313acc6e96
fixes for the T
2016-07-28 15:58:54 +02:00
Cedric Roux
5e02e8e67d
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-07-28 12:45:29 +02:00
Cedric Roux
60f0d9ad46
bugfix
2016-07-28 12:27:54 +02:00
Rohit Gupta
a2ea484cd8
remove gitlab CI detection of error logging
2016-07-27 22:59:27 +02:00
Sandeep Kumar
bf6428cf38
add rcc/rru conf files
2016-07-27 17:16:05 +02:00
Cedric Roux
3f2a080cba
better autoscroll management in textlist
...
left click: enable autoscroll and go to end of list
right click: disable autoscroll
2016-07-27 14:40:25 +02:00
Cedric Roux
d62de525eb
scroll by one line in textlist
...
to scroll by only one line, hold CONTROL key and scroll with
mouse wheel
2016-07-27 13:05:46 +02:00
Cedric Roux
b07efe7a01
add trace ENB_MAC_UE_DL_PDU_WITH_DATA to trace downlink pdu
2016-07-27 11:36:35 +02:00
Raymond Knopp
32ca86476e
removed debugging trace for Detection of hypothesized PRACH preamble
2016-07-27 11:36:25 +02:00
Raymond Knopp
b75407a1ba
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-07-27 11:31:52 +02:00
Raymond Knopp
032806725e
moving of trx_write in eNB_thread_FH to avoit conflicts with trx_read
2016-07-27 08:43:35 +02:00
Sandeep Kumar
986dfecc83
testing if5-rrh_gw tx working
2016-07-26 18:56:43 +02:00
Cedric Roux
3f20ce7b87
mono-thread test
2016-07-26 13:30:12 +02:00
Raymond Knopp
b046b07188
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.band7.tm1.usrpb210.conf
2016-07-26 12:43:33 +02:00
Raymond Knopp
64121aaf15
configuration files, minor changes in RF interface
2016-07-26 12:40:52 +02:00
Xiwen JIANG
e3dbfa3dde
some cleanup
2016-07-26 11:43:10 +02:00
Raymond Knopp
95453cf385
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-07-26 02:38:34 -07:00
Raymond Knopp
491c23c3eb
removed a debugging print in dft60
2016-07-26 02:37:44 -07:00
Rohit Gupta
fb2a4529d5
updated config files for NGFI RRH interface
2016-07-25 21:17:05 +02:00
Sandeep Kumar
81506be64c
if4 working
2016-07-25 17:40:46 +02:00
Xiwen JIANG
987ffdd8a0
add ue spec channel estimation in UE RX procedure (TM7 works for DLSCH)
2016-07-25 14:25:22 +02:00
Sandeep Kumar
4dc5032bb7
if4 tx works again with FH thread changes
2016-07-25 12:04:25 +02:00
Xenofon Foukas
849639f3a2
Merge remote-tracking branch 'oai/develop' into oai-integration
...
Conflicts:
cmake_targets/tools/build_helper
openair1/SCHED/phy_procedures_lte_eNb.c
2016-07-25 12:46:12 +03:00
Rohit Gupta
ae12ccd5af
Merge branch 'feature-34-test_framework' into develop
2016-07-25 01:22:25 +02:00
Rohit Gupta
964e622ac3
Gitlab CI: updates to test case config file for iperf
2016-07-25 01:21:54 +02:00
Rohit Gupta
051b0b38bd
Gitlab CI: minor fix for iperf logging
2016-07-24 21:51:36 +02:00
Rohit Gupta
dc18dabe3b
Gitlab CI: iperf script changes for checking connectivity
2016-07-24 20:08:21 +02:00
Raymond Knopp
e035bc3e1c
Result of testing as eNodeB. modifications for .vcd logging, bugfix in eNB_thread_FH (subframe counter), update of .conf file for new threading parameters. Updates to gtkwave configuration file for new threading.
2016-07-24 17:37:22 +02:00
Rohit Gupta
4b55eea46f
Merge branch 'feature-34-test_framework' into develop
2016-07-24 15:34:45 +02:00
Rohit Gupta
6d504b8705
Gitlab CI: minor fixes to test case config file
2016-07-24 15:33:57 +02:00
Rohit Gupta
d7e1f7caa1
Merge branch 'develop' into feature-34-test_framework
2016-07-24 14:28:19 +02:00
Raymond Knopp
02051f1cd5
Merge branch 'develop' into enhancement-10-harmony
...
Conflicts:
openair1/SCHED/phy_mac_stub.c
openair1/SCHED/phy_procedures_lte_eNb.c
targets/RT/USER/lte-softmodem.c
2016-07-24 03:14:29 -07:00
Raymond Knopp
da4e5fa7fd
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-07-24 02:40:07 -07:00
Raymond Knopp
56a8f49c9a
Merge branch 'develop' into enhancement-10-harmony
2016-07-24 02:38:35 -07:00
Raymond Knopp
161663c28d
bug fixes from Laurent on IF5 interface. 8-bit conversion for Mobipass.
2016-07-24 02:31:29 -07:00
Raymond Knopp
e0f0072023
oaisim with interfaces for lte-ue/lte-enb threading compiles and runs.
2016-07-24 01:21:35 -07:00
Raymond Knopp
b1e633bb94
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
openair1/PHY/defs.h
targets/RT/USER/lte-enb.c
targets/RT/USER/lte-softmodem.c
2016-07-23 01:23:06 -07:00
Raymond Knopp
6e4d361eb3
commit before merge
2016-07-23 01:17:59 -07:00
Xiwen JIANG
1b4adae54f
change the MAX_CARDS to 16
2016-07-22 19:51:24 +02:00
Sandeep Kumar
2e29052ff4
correct logging for common/uespec
2016-07-22 19:35:52 +02:00
Sandeep Kumar
c581eda5ac
eNB tx working
2016-07-22 18:51:04 +02:00
Sandeep Kumar
631b4cacf4
read node fn, timing from config data
2016-07-22 16:51:37 +02:00
Sandeep Kumar
6a120cf286
fixes for reading cc_synch
2016-07-22 15:40:47 +02:00
Raymond Knopp
41f0423312
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
openair1/SCHED/phy_procedures_lte_eNb.c
2016-07-21 07:54:52 -07:00
Raymond Knopp
af489a783b
addition of asynchronous RX threads and inter CC synchronization
2016-07-20 16:32:38 -07:00
Sandeep Kumar
07b3a0a9d1
prach data seems ok but no rx yet
2016-07-20 19:56:17 +02:00
Cedric Roux
833714406c
hotfix: RLC AM reported wrong number of bytes to retransmit
...
This was causing oaisim to fail way too often at the startup
of a connection.
Things should go better with this patch.
It may not be the end of the story, the use of retrans_num_bytes_to_retransmit
is not clear to me. The problem I see is: what if the max number of
retransimission has been reached (if that has a meaning at all in RLC AM)?
will this value be decreased or not?
2016-07-20 17:54:21 +02:00
Sandeep Kumar
bbe47d6fb5
some additions to config files, needs merge
2016-07-20 12:55:12 +02:00
Cedric Roux
d0b046581c
hotfix: set DCINdi for 1st uplink TX in the UE's harq process
2016-07-19 17:25:47 +02:00
Rohit Gupta
f079276222
Tests for OAI UE
2016-07-19 16:47:33 +02:00
Sandeep Kumar
fa4cfad5cb
add mmapped-dma option for lte-softmodem
2016-07-19 15:53:19 +02:00
Raymond Knopp
10ba1c0042
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-07-18 04:11:46 -07:00
Raymond Knopp
29fdf1a35a
modifications for UE on ExpressMIMO2, validation on USRP. Only RX path is activated.
2016-07-17 22:50:24 +02:00
Rohit Gupta
ffec6a4e3c
minor fix to disable error reporting for gitlab logs
2016-07-17 14:50:02 +02:00
Xiwen JIANG
79e8653f03
add read_F.c to openairinterface1/PHY/TOOLS
2016-07-15 16:52:08 +02:00
Xiwen JIANG
4763438131
bug fixed for ue_spec_bf_weights initialisation
2016-07-15 16:48:41 +02:00
Raymond Knopp
7e2a39733e
modifications for oaisim. oaisim_noS1 compiles at this point.
2016-07-15 00:04:04 -07:00
Raymond Knopp
d950124885
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
targets/RT/USER/lte-softmodem.c
2016-07-14 12:59:29 +02:00
Raymond Knopp
89a9be9b9f
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
openair1/SCHED/phy_procedures_lte_ue.c
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-ue.c
2016-07-14 12:52:21 +02:00
Sandeep Kumar
b804f1e47e
send correct timing
2016-07-13 19:33:40 +02:00
Rohit Gupta
da1d8230f0
Merge branch 'develop' into feature-44-dedicated-drb
2016-07-12 19:44:00 +02:00
Rohit Gupta
9af98222c2
merge from feature-34-test_framework
2016-07-12 19:41:11 +02:00
Rohit Gupta
a9e7354307
minor fix to iperf script
2016-07-12 19:36:28 +02:00
Sandeep Kumar
0789ee9560
ifdevice tx/rx buffer per cc
2016-07-12 17:58:02 +02:00
Cedric Roux
b1dde78f87
use official openair logo in enb.c
2016-07-12 16:00:14 +02:00
Florian Kaltenberger
142c02a5b8
small fix in CMakeLists.txt to avoid inclusion of unwanted files
2016-07-12 11:18:05 +02:00
Florian Kaltenberger
c46eacadc5
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-07-11 22:24:38 +02:00
Rohit Gupta
eb6edbd7ed
minor fix for Gitlab startup script
2016-07-11 21:38:27 +02:00
Cedric Roux
4fa14f209b
merge oai/develop and oai-internal/T
2016-07-11 14:09:48 +02:00
Cedric Roux
d48c336934
hotfix: better management of s-tmsi reconnect
...
The code was changing the rnti in the red-black tree without
removing/reinserting the context. This is wrong because the
rnti is a key of the red-black tree and you cannot change the
key in a stored item at will.
There are also modifications of the function mac_eNB_rrc_ul_failure
which has to remove the UE in any case.
And rrc_mac_remove_ue has been changed for the case where
the UE is not found.
2016-07-11 12:47:31 +02:00
Rohit Gupta
111d9a9b2a
Gitlab CI: add tests for TCP throughput
2016-07-11 03:18:15 +02:00
Rohit Gupta
162874c7ce
Gitlab CI: minor fix for UDP overflow by reducing UDP max throughput
2016-07-11 02:27:17 +02:00
Rohit Gupta
798413fde2
Merge branch 'feature-34-test_framework' into develop
2016-07-10 21:23:06 +02:00
Rohit Gupta
5220b7b63c
Gitlab CI: hotfixes for test setup
2016-07-10 21:22:40 +02:00
Rohit Gupta
2b64cb8f67
Merge branch 'develop' into feature-34-test_framework
2016-07-10 20:54:14 +02:00
Sandeep Kumar
a3c41ed7ff
remove writeop, rru tx works
2016-07-08 19:43:09 +02:00
Rohit Gupta
75686dc50a
Merge branch 'develop' into feature-44-dedicated-drb
2016-07-08 18:03:08 +02:00
Rohit Gupta
e2fbe8be31
Gitlab CI: minor logging related to thread busy errors
2016-07-08 17:21:26 +02:00
Sandeep Kumar
8934fed89e
fixed issue with offset and sign extension
2016-07-08 17:01:06 +02:00
Rohit Gupta
94a111a4b2
Gitlab CI: minor fix for log checkking on local disk and not NFS share
2016-07-08 16:28:04 +02:00
Rohit Gupta
ffc56051c4
Merge branch 'feature-44-dedicated-drb' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-07-08 16:11:21 +02:00
Rohit Gupta
7b85a3a4ac
Merge branch 'develop' into feature-44-dedicated-drb
2016-07-08 16:10:26 +02:00
Rohit Gupta
3a44d8e272
Merge branch 'feature-34-test_framework' into develop
2016-07-08 16:09:47 +02:00
Rohit Gupta
c2598500d6
Gitlab CI: mark test case as failure if there was assert
2016-07-08 16:09:34 +02:00
Rohit Gupta
9396d53b72
disable wireshark logging
2016-07-08 15:28:08 +02:00
Rohit Gupta
eeacfef5cc
minor modifications to test case config
2016-07-08 15:27:55 +02:00
Cedric Roux
19d4502c3d
add PUCCH plots to enb.c
2016-07-08 13:14:03 +02:00
Cedric Roux
1dff3c4db6
add another IQ logger
...
iqlog.c should change its name, it's too specific.
This new one is more generic and should take over the name.
2016-07-08 13:02:54 +02:00
Cedric Roux
aea2da5e4f
minor compilation warning fix
2016-07-08 12:57:33 +02:00
Cedric Roux
c4c288cb90
minor bugfix
2016-07-08 12:57:13 +02:00
Cedric Roux
3310c2a93f
cosmetic changes
2016-07-08 12:56:25 +02:00
Aikaterini Trilyraki
c8f165e5fa
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-07-08 12:38:23 +02:00
Aikaterini Trilyraki
b970fde069
Merge branch 'feature-44-dedicated-drb' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-07-08 12:38:01 +02:00
Aikaterini Trilyraki
f9fda301fd
adding two rules for run_enb_ue_virt_s1 script to resolve the issue of data path with simulated UE (contributed by A. Ksentini)
2016-07-08 12:37:55 +02:00
Rohit Gupta
6e7e43f475
disable wireshark logging
2016-07-08 12:09:55 +02:00
lukashov
ce15e0e97b
Fixing warning and changing target precission to 10^(-2).
2016-07-08 10:49:53 +02:00
lukashov
8cc39130e0
Now dlsim computes throughput for both streams.
2016-07-08 01:46:54 +02:00
Rohit Gupta
6b278cb4b7
minor modifications to test case config
2016-07-08 01:13:35 +02:00
Rohit Gupta
e5b1953140
minor change in schduler logging for DRB
2016-07-07 21:40:30 +02:00
Sandeep Kumar
5f0e15a4b8
save for switching pc
2016-07-07 19:05:14 +02:00
Xiwen JIANG
208e4d7e84
Merge branch 'feature-21-TM7' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-21-TM7
2016-07-07 17:54:23 +02:00
Cedric Roux
69ec911283
hotfix: remove HARQ process ID freelist
...
It creates more problems than it solves.
We replace this approach by a straightforward
synchronous one.
Now in the downlink, at frame f and subframe s
we use HARQ process (f * 10 + s) % 8.
This is similar to uplink scheduling.
2016-07-07 17:21:18 +02:00
Aikaterini Trilyraki
49e6a2b720
add T for all lcids
2016-07-07 17:15:10 +02:00
lukashov
4e8e707951
Some more clean up + adding second option for a precoder.
2016-07-07 16:44:36 +02:00
lukashov
aa69c550e3
A bit of clean-up.
2016-07-07 14:26:00 +02:00
Sandeep Kumar
9cbf5819c1
fixes from bbu/rrh trial run
2016-07-07 11:27:50 +02:00
Sandeep Kumar
f57a8b8c8f
changes to send/recv if5
2016-07-06 18:28:57 +02:00
Sandeep Kumar
25952d4450
added node fn RRU_IF5, split points and vcd logging
2016-07-06 17:08:26 +02:00
lukashov
b8e9e188c1
Merge branch 'develop' into feature-59-tm4
2016-07-06 15:47:45 +02:00
lukashov
51e8e0ade7
Fixing SIC receiver for all the combinations.
...
Introduced >>1 shift in SIC modulation for 64QAM to avoid overflow.
Shift is then compensated in llr computation.
2016-07-06 15:44:39 +02:00
Xiwen JIANG
a5b57ddce4
dci decoding procedure
2016-07-06 15:01:58 +02:00
Sandeep Kumar
b5fbdbe252
test if5 send from BBU with new spp
2016-07-06 12:23:00 +02:00
Rohit Gupta
d319a9f05b
Merge branch 'develop' into feature-44-dedicated-drb
2016-07-06 11:54:58 +02:00
Rohit Gupta
863dbe8e86
Merge branch 'feature-44-dedicated-drb' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-07-06 11:54:42 +02:00
Florian Kaltenberger
35bdc94092
fixing a few bugs after merge
2016-07-06 10:28:27 +02:00
Sandeep Kumar
8dcc3ddb4d
if_defs and eth_lib .h cleanup
2016-07-06 09:56:13 +02:00
S. Sandeep Kumar
622f917351
adjust spp for whole number per subframe
2016-07-06 03:02:53 +05:30
S. Sandeep Kumar
c32304afbf
allow rf and if for eNB build
2016-07-06 01:34:12 +05:30
Sandeep Kumar
ba11fc848d
keep alaw lut and remove other code
2016-07-05 18:01:41 +02:00
Sandeep Kumar
9c1a6fc16e
rru recv frame no fix
2016-07-05 17:54:35 +02:00
nikaeinn
d8b6edaa9f
update the run_enb_s1_usrp script for T tracer
2016-07-05 16:43:27 +02:00
nikaeinn
9f0cfa85b0
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-07-05 16:40:50 +02:00
Xiwen JIANG
08f73c72d8
resolve conflict when merge develop
2016-07-05 15:11:12 +02:00
Cedric Roux
633526331a
hotfix: force 32-bytes alignment for avx2 code to be happy
2016-07-05 14:25:41 +02:00
Xiwen JIANG
802922dcf1
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-21-TM7
2016-07-05 11:22:46 +02:00
nikaeinn
957707ad39
merge with the develop branch
2016-07-05 10:58:23 +02:00
nikaeinn
a34d624f6a
minor updates in the time measurement script
2016-07-05 10:40:57 +02:00
Sandeep Kumar
cfd45a1d9e
small fixes and mid save
2016-07-04 17:42:31 +02:00
Rohit Gupta
7390798b8b
Merge branch 'feature-34-test_framework' into develop
2016-07-04 01:16:46 +02:00
Rohit Gupta
a108e70362
Merge branch 'feature-44-dedicated-drb' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-07-04 00:53:13 +02:00
Rohit Gupta
e54100b854
Merge branch 'bugfix-9i-opt-wireshark' into develop
2016-07-04 00:52:44 +02:00
Raymond Knopp
64e3d4f651
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
openair1/SCHED/phy_procedures_lte_eNb.c
2016-07-03 12:53:26 +02:00
Sandeep Kumar
5ae509b2de
if5_mobipass tools
2016-07-01 19:30:18 +02:00
Sandeep Kumar
55c194b07d
added mobipass interface and tested sending dummy and starting stream, no reply yet
2016-07-01 19:29:02 +02:00
Florian Kaltenberger
91193c2c8e
add tm7 case into asn1 message
...
set transmission mode in phy_config_dedicated_[UE|eNB] after RRCConnectionReconfiguration(eNB) and RRCConnectionReconfigurationComplete(UE)
add ue_TransmissionMode in RrcConfigurationReq
added ue_transmission_mode and nb_antenna_ports to eNB config file
transmisison mode gets set with RRCReconfiguration
2016-07-01 13:48:10 +02:00
Florian Kaltenberger
7463f71b48
mostly bugfixes
2016-07-01 13:20:15 +02:00
Florian Kaltenberger
cd8cc1a35c
added ue_transmission_mode and nb_antenna_ports to eNB config file
...
transmisison mode gets set with RRCReconfiguration
2016-07-01 13:19:18 +02:00
Raymond Knopp
b628856635
updates in UE for new process scheduling
2016-07-01 03:10:39 -07:00
Rohit Gupta
0af1f7ecde
Merge branch 'develop' into feature-34-test_framework
2016-07-01 11:51:59 +02:00
Rohit Gupta
99db0df36f
minor fix for build logging
2016-07-01 11:51:31 +02:00
Rohit Gupta
06ff2561b8
addition of LMSSDR test cases
2016-06-30 20:41:29 +02:00
Sandeep Kumar
3fd226f7b0
added sync between rru and rcc frame, subframe
2016-06-29 17:16:29 +02:00
Rohit Gupta
362d28b4f1
Merge branch 'develop' into bugfix-9i-opt-wireshark
2016-06-29 13:02:45 +02:00
Rohit Gupta
47d8583b23
Merge branch 'bugfix-96-Fix-build-script-for-16.04-installation-v3' into develop
2016-06-29 12:56:32 +02:00
Rohit Gupta
652fafd0ec
Merge branch 'develop' into bugfix-9i-opt-wireshark
2016-06-29 12:19:18 +02:00
Xenofon Foukas
71c047d1ae
Revert to single eNodeB for simulation
2016-06-29 12:32:19 +03:00
Xenofon Foukas
615da86332
Merge remote-tracking branch 'oai/develop' into oai-integration
...
Conflicts:
cmake_targets/CMakeLists.txt
cmake_targets/tools/build_helper
targets/SIMU/USER/oaisim.c
2016-06-29 12:31:56 +03:00
Sandeep Kumar
36a3d85727
init if before rf, cleaning usrp blocks
2016-06-28 18:05:23 +02:00
Cedric Roux
d0c99c296e
Merge branch 'develop' into T
2016-06-28 13:21:32 +02:00
Cedric Roux
cadb672d10
minor bugfix: forgot to update T_init in the example tracee
2016-06-28 13:00:16 +02:00
Cedric Roux
3d78e5a34b
add option --T_dont_fork to tracee (lte-softmodem, oaisim)
...
The T has 2 processes: the tracee and the local tracer
if the tracee dies (segfault or whatever) the tracee
may still be running.
So there is a third process that monitors those two others
and kill everything when one dies.
The problem is that this third process has to be the parent
of the two others. That makes debugging the tracee with gdb
impossible. This new option disables the third monitor process.
2016-06-28 12:50:58 +02:00
Sandeep Kumar
36df9556c2
minor typo
2016-06-27 17:26:43 +02:00
Sandeep Kumar
0d4d8cef0e
added node func BBU and marked split for rf/if read and write
2016-06-27 17:21:53 +02:00
Sandeep Kumar
6ae4123733
some fixes for host type/dev type
2016-06-27 12:43:43 +02:00
Sandeep Kumar
81ce21343b
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-27 12:35:44 +02:00
Raymond Knopp
456572c9ad
ExMIMO2 RX gain calibration
2016-06-27 00:58:54 -07:00
Rohit Gupta
8fb60cd509
Merge branch 'develop' into bugfix-96-Fix-build-script-for-16.04-installation-v3
2016-06-26 21:46:33 +02:00
Rohit Gupta
ffebfac829
Merge branch 'bugfix-96-Fix-build-script-for-16.04-installation-v3' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-96-Fix-build-script-for-16.04-installation-v3
2016-06-26 21:46:01 +02:00
Rohit Gupta
af1f91827b
minor fix for gitlab certificate issues
2016-06-25 23:12:40 +02:00
Rohit Gupta
391f66303f
Merge branch 'develop' into feature-34-test_framework
2016-06-25 23:01:09 +02:00
Rohit Gupta
107871d1b0
Merge branch 'feature-34-test_framework' into develop
2016-06-25 23:00:40 +02:00
Rohit Gupta
f5fc18ff37
Gitlab CI: minor updates to test setup
2016-06-25 23:00:07 +02:00
Xiwen JIANG
224498cf3b
add ue_TransmissionMode in RrcConfigurationReq
2016-06-24 18:13:02 +02:00
Xiwen JIANG
95808aec10
add ue_TransmissionMode in RrcConfigurationReq
2016-06-24 18:11:21 +02:00
Cedric Roux
be03e9f80f
bugfix in enb.c
...
we have to free memory in any case...
2016-06-24 18:11:09 +02:00
Xiwen JIANG
7d7cbc57f8
set transmission mode in phy_config_dedicated_[UE|eNB] after RRCConnectionReconfiguration(eNB) and RRCConnectionReconfigurationComplete(UE)
2016-06-24 18:09:06 +02:00
Cedric Roux
4bdacd953d
add a .gitignore in the T directory
...
git status was way too noisy
2016-06-24 17:59:50 +02:00
Cedric Roux
3f4f285136
fix the T tracee example, it did not work anymore
2016-06-24 17:57:16 +02:00
Cedric Roux
bc20616af7
minor: parameters missing to some LOG_ macros plus some cleanup
2016-06-24 17:51:00 +02:00
Sandeep Kumar
56fcc17ebc
small compilation rru
2016-06-24 17:36:40 +02:00
Sandeep Kumar
1992271589
rcc recv and send work (not sync with rru yet)
2016-06-24 16:35:42 +02:00
Frédéric Leroy
9624232f67
build_helper: show "compilation failed" error message
2016-06-24 06:09:51 -05:00
Frédéric Leroy
a3d26040de
build_helper: add EXIT handler to inform that the build fails
2016-06-24 06:09:51 -05:00
Frédéric Leroy
30cf26c0dc
build_helper: fix libxslt1-dev installation
...
libxslt1-dev is used at least for asn1 and usrp. It breaks the build when in
check_install_additional_tools().
Move it to to check_install_oai_software()
2016-06-24 06:09:19 -05:00
Frédéric Leroy
71af065b48
build_helper: move uhd to not break apt-get remove
...
uhd is not part of ubuntu standard repositories >= 14.04.
Move the removal of uhd in its own space and do not fail if it doesn't exists.
2016-06-24 06:09:01 -05:00
Xiwen JIANG
6a8a551ef3
add beamforming_mode into generate eNB and UE dlsch parameters from DCI
2016-06-24 12:32:57 +02:00
Xiwen JIANG
4fa0810cdd
add tm7 case into asn1 message
2016-06-24 12:20:38 +02:00
Cedric Roux
bfa749a7fa
hotfix: rrc_mac_remove_ue was wrong
2016-06-24 10:58:29 +02:00
Sandeep Kumar
808494dd44
unified if4 header
2016-06-24 10:52:52 +02:00
Raymond Knopp
9f0a76e84b
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-23 19:08:28 +02:00
Raymond Knopp
08d89933e1
expressmimo TX ok.
2016-06-23 19:08:01 +02:00
Sandeep Kumar
8390977e7e
getting rid of bit-fields
2016-06-23 18:36:34 +02:00
Florian Kaltenberger
b3fc3850d8
changing the way data is generated at eNB in --phy-test option
2016-06-23 15:14:01 +02:00
Florian Kaltenberger
cfc5ff209e
Merge branch 'develop' into enhancement-64-phy_test
2016-06-23 15:13:14 +02:00
Cedric Roux
1a6c20cf76
bugfix: record.c did not manage ctrl+c and ctrl+z correctly
...
ctrl+c did not work when the program was not connected yet.
It also didn't work if no event was received.
2016-06-23 14:48:25 +02:00
Cedric Roux
832ecfb470
update enb.c to include MAC PDU/SDU with full buffer logs
2016-06-23 12:41:19 +02:00
Cedric Roux
6445cc95f5
add T traces for MAC PDU/SDU including full buffers
2016-06-23 12:39:57 +02:00
Cedric Roux
bb0816cdeb
2 new T logs: MAC PDU/SDU with buffer data
2016-06-23 12:38:59 +02:00
Sandeep Kumar
89052325e1
handling if send for rxsigF
2016-06-23 11:33:30 +02:00
Cedric Roux
bb051c0219
T_messages.txt is now sent by local_tracer.c
...
And it's sent at each connection attempt.
Before it was sent only once to the first tracer.
Plus there was a bug (length:(len) should have been length:(send_size)).
2016-06-23 11:09:05 +02:00
Cedric Roux
d47e307472
rename T_cache to T_local_cache in T/local_tracer.c
...
needed because of the following commit
2016-06-23 11:06:48 +02:00
Cedric Roux
0d6c4a31f9
hotfix: include T.h before redefining VCD macros
2016-06-23 09:53:26 +02:00
Raymond Knopp
a3e1aed459
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-06-22 15:04:57 -07:00
Sandeep Kumar
f5eaa7d7ed
minimal fixes from base rru run
2016-06-22 18:21:28 +02:00
Cedric Roux
6a809e84de
add option -full to textlog.c to display full content of buffers
2016-06-22 16:13:47 +02:00
Cedric Roux
31e1be78fa
add possibility to logger 'textlog' to print full content of buffers
2016-06-22 16:12:26 +02:00
Cedric Roux
088db3cf37
new function PUTX2 to display an int as an 8 bits hexadecimal
2016-06-22 16:10:32 +02:00
nikaeinn
641af1631f
update rrc and oaisim for the dedicated bearers
2016-06-22 12:31:03 +02:00
Cedric Roux
bbcfd0047c
add a "hacks" directory with hackish-quality pieces of software
...
stuff put in there is of lower quality / coding standard / whatever
and serves as example to do quick debugging taks using the T
infrastructure
2016-06-22 11:14:27 +02:00
Cedric Roux
3c5e27618d
add PUSCH IQ and UL channel estimates for UE 0 to enb.c
2016-06-22 11:10:53 +02:00
Xiwen JIANG
61a6b06129
distinguish beamforming mode in rx_pdsch for SI, RA and data
2016-06-22 11:09:24 +02:00
Cedric Roux
f31145ac96
new IQ logger
...
the current version is very specific to PUSCH IQ data, where the
input buffer has a special format
to be rewritten cleanly at some point
2016-06-22 10:58:25 +02:00
Cedric Roux
d2bd09bb9d
add function framelog_set_update_only_at_sf9 and update code about it
2016-06-22 10:55:34 +02:00
Cedric Roux
8c328e00b0
increase size of enb.c man window
2016-06-22 10:53:59 +02:00
Raymond Knopp
6d51052eff
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-22 08:39:25 +02:00
Raymond Knopp
4302afee51
small changes
2016-06-22 08:38:54 +02:00
Raymond Knopp
1f274a7b04
Merge remote-tracking branch 'origin' into enhancement-10-harmony
...
Merge in develop too.
Conflicts:
cmake_targets/CMakeLists.txt
openair1/PHY/CODING/3gpplte_sse.c
openair1/PHY/LTE_TRANSPORT/phich.c
openair1/PHY/LTE_TRANSPORT/ulsch_demodulation.c
openair1/SCHED/phy_mac_stub.c
openair1/SCHED/phy_procedures_lte_eNb.c
targets/RT/USER/lte-softmodem.c
2016-06-21 23:36:23 -07:00
Sandeep Kumar
21b492f95c
minimal fixes from rcc test
2016-06-21 18:08:10 +02:00
Sandeep Kumar
d43b8a3041
handling low level eth function for read
2016-06-21 17:08:27 +02:00
Sandeep Kumar
12385fbd64
changes to handle different proc in callers
2016-06-21 17:05:32 +02:00
Cedric Roux
7d311b57df
hotfix: a value was missing in ref24
...
That led to uplink two resource blocks to fail being decoded (not always),
due to wrong channel estimation. (As was the previous hotfix for five
resource blocks.)
This commit also includes some cleanup of some historical code that is
not relevant anymore.
2016-06-21 15:54:03 +02:00
Florian Kaltenberger
2e2f6f9c20
transmission mode is now taken into account in RRC signalling
...
small bugfix in dlsch_demodulation
shunted out TM3-7 specific DCI generation in scheduler to enable basic operation. more work needed.
2016-06-21 15:33:57 +02:00
Cedric Roux
0d022cf5b0
hotfix: ref_primes has wrong value for 5 prbs
...
the bigger prime number lower than 60 is 59, not 50
2016-06-21 13:04:13 +02:00
Sandeep Kumar
ba77625411
device specific eth headers - needs testing
2016-06-21 11:50:17 +02:00
Sandeep Kumar
ad9411fcaa
changes to allow if4 specific eth transport modes
2016-06-21 11:05:11 +02:00
Raymond Knopp
e5132ebf5f
eNB_proc_t -> eNB_rxtx_proc_t in if4_tools.c, addition on parameter of functions
2016-06-20 13:59:00 -07:00
Rohit Gupta
039f819d10
Gitlab CI: fix for 0255* + iperf script route
2016-06-20 18:59:44 +02:00
Rohit Gupta
f7d815190b
Gitlab CI: fix for 0255* + iperf script route
2016-06-20 18:58:06 +02:00
Sandeep Kumar
f6f7597ec1
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-20 18:53:29 +02:00
Sandeep Kumar
a8def02fbf
starting to add if4 specific eth read, write
2016-06-20 18:36:17 +02:00
Sandeep Kumar
f2e183fb2b
handling changes in eth lower level functions
2016-06-20 18:33:37 +02:00
Cedric Roux
0f0fa90d16
xy view to exist in two flavours
...
XY_LOOP_MODE: replace old points with new ones, using the maximum size
of the view
XY_FORCE_MODE: append_forced sets those and only those points
and we crash if we pass too much points
2016-06-20 15:40:53 +02:00
Raymond Knopp
94fd52a484
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-20 03:00:21 -07:00
Cedric Roux
8e458d9c9b
add a very basic step mechanism to replay.c
2016-06-20 11:36:17 +02:00
Sandeep Kumar
9246b16ca9
added logic for recv_if4 function
2016-06-20 10:51:40 +02:00
Sandeep Kumar
fc13e2005f
if header and data blocks seperated
2016-06-20 10:21:02 +02:00
Cedric Roux
c5b126f598
update format of trace ENB_PHY_PUSCH_IQ to include N_RB_UL and symbols_per_tti
2016-06-20 10:02:40 +02:00
Rohit Gupta
0bca3ea53d
minor fixes to build scripts
2016-06-18 23:44:38 +02:00
Rohit Gupta
9c21ceac22
Merge branch 'develop' into bugfix-96-Fix-build-script-for-16.04-installation-v3
2016-06-18 22:53:39 +02:00
Rohit Gupta
0c74ab15f4
Merge branch 'feature-34-test_framework'
2016-06-18 22:17:09 +02:00
Rohit Gupta
566fd4515c
Merge branch 'feature-34-test_framework' into develop
2016-06-18 22:16:47 +02:00
Rohit Gupta
7f4ec78295
Merge branch 'develop' into feature-34-test_framework
2016-06-18 22:16:11 +02:00
Rohit Gupta
c00fae8702
Gitlab CI: minor fix for 0155* test cases
2016-06-18 22:15:09 +02:00
Rohit Gupta
fabb23bbde
minor fix to asn1c installation
2016-06-18 21:21:31 +02:00
Rohit Gupta
9c4bfb0195
Gitlab CI: netifaces installation + minor fixes
2016-06-18 19:53:14 +02:00
Rohit Gupta
79df1bf7a2
Merge branch 'feature-34-test_framework' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-34-test_framework
2016-06-18 18:56:19 +02:00
Rohit Gupta
fb0aa1115e
Gitlab CI: minor fixes to bandrich UE conf
2016-06-18 18:54:23 +02:00
Raymond Knopp
21aff80bc9
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
targets/RT/USER/lte-enb.c
2016-06-18 03:52:06 -07:00
Raymond Knopp
f91457d8d2
added common acquisition interfaces for ExpressMIMO2
2016-06-18 03:48:23 -07:00
Xiwen JIANG
a04682d47a
oaisim takes tx and rx antenna number from config file and transmission mode from the command line
2016-06-17 16:44:30 +02:00
Xiwen JIANG
5a40c9a8c7
bug fixed for dlsch_modulation input
2016-06-17 16:42:40 +02:00
Xiwen JIANG
81047e94af
cosmetic changes
2016-06-17 16:41:21 +02:00
Cedric Roux
8e28dacdd9
add a small utility to extract a configuration file from a log
2016-06-17 15:39:25 +02:00
Sandeep Kumar
5541cafd95
add vcd logging for send, recv if4 and delay for testing without recv
2016-06-17 15:39:24 +02:00
Cedric Roux
99d1328d6e
add a very basic replay tracer
...
to be used in conjunction with another tracer
so conceptually it's more a tracee than a tracer
2016-06-17 15:16:49 +02:00
Cedric Roux
97d1dcbccd
add a 'record' tracer
2016-06-17 15:16:19 +02:00
Sandeep Kumar
e38dc81c16
just testing node function
2016-06-17 12:19:36 +02:00
Cedric Roux
9d49702639
cleanup: put DEFAULT_REMOTE_IP and DEFAULT_REMOTE_PORT in utils.h
2016-06-17 11:14:14 +02:00
S. Sandeep Kumar
03f66cb85e
handle prach rx for enb node functions
2016-06-17 04:14:41 +05:30
S. Sandeep Kumar
d7781f7a31
asthetic fixes for lte-enb.c
2016-06-17 01:47:42 +05:30
Rohit Gupta
1581fcb5cb
Merge branch 'develop' into feature-34-test_framework
2016-06-16 22:17:20 +02:00
Sandeep Kumar
c5745c1622
highlight send/recv if4 - midsave to swich pc
2016-06-16 17:44:05 +02:00
Cedric Roux
031e6a024f
Merge branch 'develop' into T
2016-06-16 17:22:30 +02:00
Cedric Roux
126be3fea6
synchronize VCD data in the T
2016-06-16 17:13:32 +02:00
Rohit Gupta
2be7706692
Merge branch 'develop'
2016-06-16 14:10:34 +02:00
Rohit Gupta
6bb3a001fa
minor updates to X310 test cases
2016-06-16 14:09:52 +02:00
Sandeep Kumar
c76951a319
handle per cc device for some tx/rx cases
2016-06-16 12:49:15 +02:00
Sandeep Kumar
dd6e1f9d87
fixes for if4_tools for compilation
2016-06-16 12:45:08 +02:00
Cedric Roux
d0a33fac6c
cleanup: rename legacy groups warning/info/error/xxx
2016-06-16 12:36:29 +02:00
Cedric Roux
1f389ec019
cleanup: rename PHY traces (and update code to reflect the changes)
2016-06-16 12:16:20 +02:00
Sandeep Kumar
b70b2ac4c4
add openair0 device to eNB struct and per CC_id changes
2016-06-16 11:32:48 +02:00
Cedric Roux
70d58491fc
bugfix: uplink transmission/retransmission traces were wrong
2016-06-16 11:09:25 +02:00
Cedric Roux
4ea0121cab
hotfix: rewrite allocate_CCEs, it didn't work properly.
...
The distinction common space/user space still requires some
careful examination.
2016-06-15 22:24:15 +02:00
Xiwen JIANG
d7db5cdd57
merge ue_spec beamforming and cell_spec beamforming to beam_precoding
2016-06-15 17:54:13 +02:00
lukashov
c63abc0842
Fixing merge with develop
2016-06-15 16:01:15 +02:00
Frédéric Leroy
cdb182c153
CMakeLists.txt: force compilation to gnu89 standard for gccxml
...
clang have changed its default standard to C11 compilation and is stricter.
Ensure use of gnu89 standard to use pthread extension for --castxml-gccxml
2016-06-15 14:07:54 +02:00
Frédéric Leroy
22b278d43b
CMakeLists.txt: fix lte-softmodem-nos1 build
...
It can't link because nas_config.c and rb_config.c was commented.
2016-06-15 14:07:53 +02:00
Frédéric Leroy
f81b6704f4
lmsSDR: remove static from struct SamplesPacket.
...
Th struct SamplesPacket is a type declaration. It is not defined
in memory and thus samplesCount can't be declared static.
Transform it to true cpp static variable class as this is c++ source.
2016-06-15 14:07:53 +02:00
cubiq
2349b37e1f
lte-softmodem: add "-ldl" options to linkage
2016-06-15 14:07:53 +02:00
Frédéric Leroy
eb029cb811
build_helper: use official bladerf packages
...
bladerf ppa don't publish packages for Ubuntu 16.04.
There are official packages for bladerf so we use these.
2016-06-15 14:07:53 +02:00
Frédéric Leroy
ccddb78594
build_oai: make USRP build possible without hardware
2016-06-15 14:07:53 +02:00
Frédéric Leroy
feb5979830
build_helper: remove non-existent package uhd
...
It breaks apt-get remove command
2016-06-15 14:07:53 +02:00
Frédéric Leroy
05ad02d555
build_helper: add flag to allow compiling software without hardware
...
Add --disable-hardware-dependency flag to avoid hardware need when compiling OAI.
For the momment it avoids to flash bladeRF hardware
2016-06-15 14:07:53 +02:00
Frédéric Leroy
81d96a3110
CMakeLists.txt: Add missing check and include for pgm library
2016-06-15 14:07:53 +02:00
Frédéric Leroy
5710c1c3ad
build_helper: replace dependency on libpgm-5.x.0 in check_install_oai_software
...
libpgm-dev will add the dependency on libpgm 5.2.0 or 5.1.0 automatically
according to the ubuntu version
2016-06-15 14:07:53 +02:00
Frédéric Leroy
12c0ec8334
build_helper: remove libblas3gf for ubuntu 16.04
...
liblas3gf have been replaced by libblas3 on 16.04
liblas3* will be pulled by libblas-dev, so we don't need to add it to package list
2016-06-15 14:07:53 +02:00
Frédéric Leroy
2b98daec1b
build_helper: add missing package in check_install_oai_software
2016-06-15 14:07:52 +02:00
Frédéric Leroy
6b2247f12c
build_helper: fix package version according to distribution
2016-06-15 14:07:52 +02:00
lukashov
199434b92c
Merge branch 'develop' into feature-59-tm4
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/dci_tools.c
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/LTE_TRANSPORT/dlsch_modulation.c
openair1/PHY/LTE_TRANSPORT/proto.h
openair1/SIMULATION/LTE_PHY/dlsim.c
2016-06-15 13:21:44 +02:00
Frédéric Leroy
02d321f964
fix iperf3 installation for Ubuntu 14.04
2016-06-15 08:53:10 +02:00
Frédéric Leroy
1c81ad97b3
add missing package software-properties-common
...
This package is needed for the command add-apt-repository
2016-06-15 08:38:32 +02:00
Frédéric Leroy
67eb92cda9
Check if the distribution is supported
...
Thank to Thomas Laurent for refactorize get_distribution_released
2016-06-15 08:11:20 +02:00
Sandeep Kumar
981655ccb1
integrate send_IF4 with alaw lut
2016-06-14 17:05:07 +02:00
Raymond Knopp
626d107978
Merge branch 'develop' into enhancement-10-harmony
...
Conflicts:
cmake_targets/CMakeLists.txt
openair1/SCHED/phy_mac_stub.c
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-ue.c
2016-06-14 05:41:18 -07:00
Frédéric Leroy
51b5fcd489
build_helper: tell where the log will be written in compilations()
...
build_helper exits early on error. compilations() tells where the
compilation logs can be found after compiling it. So in case of error, it
was never displayed.
Add a log info before compiling
2016-06-14 14:19:48 +02:00
Frédéric Leroy
34801af904
build_oai: exit early on error
...
There are a lot of case where the build scripts fails. Despite this, the
build script happily continue to the end and tells "Successfully built
xxxx".
This fix ensure the build stops early with the first error message on the
bottom of the log.
2016-06-14 13:55:25 +02:00
Sandeep Kumar
a33bb69421
added multiple eth_params read
2016-06-14 11:18:47 +02:00
Rohit Gupta
22bf711a5d
Gitlab CI: USRP B210 Reset
2016-06-14 02:30:02 +02:00
Rohit Gupta
8bad83010e
Gitlab CI: minor fix for bandrich UE
2016-06-14 02:25:40 +02:00
S. Sandeep Kumar
e48a34f68f
added alaw lut for +-16/+8/+-16
2016-06-14 05:07:16 +05:30
Rohit Gupta
7481517d0e
Merge branch 'develop' into feature-34-test_framework
2016-06-14 01:06:11 +02:00
Rohit Gupta
ba997a2bce
Merge branch 'T' into 'develop'
...
T
I did some compilation tests using `./build_oai -s --run-group "0101*"`, all was fine.
I ran `lte-softmodem` with the sequans and let it run for a while with both
uplink and downlink UDP low throughput traffic, all was fine.
I ran some TCP tests, downlink 14 Mb/s (because the sequans does not report
a CQI of 15 but 14 maximum, so we don't go to maximum MCS, so 14 Mb/s instead
of 16) with a very clean radio (almost no error in the HARQ processes).
For uplink things are not so clean, it starts at 6 Mb/s and after a while goes
down to 2/3 Mbit/s. Lot's of errors in the HARQ processes, mostly uplink but
also downlink.
This is a both with and without T activated.
So to me it's fine.
The T tracer is a debugging tool. When it's not enabled,
it has zero impact on the processing. I think we need to
do very little tests before merging. I'll let you decide
but to me it's okay!
See merge request !36
2016-06-14 00:33:14 +02:00
Sandeep Kumar
2cd8489086
starting to add run options for node_function
2016-06-13 18:50:05 +02:00
Sandeep Kumar
2cc779b930
added macros for packet_type
2016-06-13 18:27:42 +02:00
Raymond Knopp
8adffcea3a
small bugfix in turbo-encoder (both SSE4 and AVX2) which affected short block-lengths
2016-06-13 11:50:56 +02:00
Raymond Knopp
29905893b0
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-13 01:47:16 -07:00
Raymond Knopp
45cbc8ab7d
fixed unitary simulators
2016-06-12 21:44:40 -07:00
S. Sandeep Kumar
9c159229d5
added rcc rx recv_IF4 logic
2016-06-13 02:48:05 +05:30
Raymond Knopp
a2e7ddee86
fixed AVX2 issue in 3gpplte_sse.c
2016-06-12 04:56:16 -07:00
Cedric Roux
26c3a6a039
forgot to include T.h
...
if you compile *without* T it fails because the T macro is interpreted
as a function call
2016-06-10 12:42:44 +02:00
Cedric Roux
e1cc2fe2b8
cleanup after merge
2016-06-10 12:12:03 +02:00
Cedric Roux
310b027acd
Merge remote-tracking branch 'main/develop' into T
...
Conflicts:
cmake_targets/CMakeLists.txt
cmake_targets/build_oai
openair1/PHY/LTE_TRANSPORT/pucch.c
openair1/SCHED/phy_procedures_lte_eNb.c
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
targets/RT/USER/lte-softmodem.c
2016-06-10 11:49:59 +02:00
Rohit Gupta
ec905e7cf9
fixed a bug in initialization of DCI
2016-06-10 11:14:20 +02:00
Dominique Nussbaum
841078e668
fixes for 20MHz
2016-06-10 11:14:07 +02:00
Cedric Roux
468020879e
enb.c logs MAC/RLC/PDCP
...
very basic, to be refined, find a nice way to display (plot? text?)
protocol data movement
2016-06-10 10:48:39 +02:00
Cedric Roux
262cda6199
add PDCP traces to the code
2016-06-10 10:48:13 +02:00
Cedric Roux
10dbc33e01
add RLC traces to the code
2016-06-10 10:47:42 +02:00
Cedric Roux
d7e072a413
MAC tracing in the code
2016-06-10 10:46:45 +02:00
Cedric Roux
416491821d
add mac/rlc/pdcp messages' definitions to T_messages.txt
...
to be refined, it's rough
2016-06-10 10:44:42 +02:00
Cedric Roux
dd55be2c67
cleanup
2016-06-09 17:35:41 +02:00
Cedric Roux
57240cc03b
switch to utf-8
2016-06-09 17:33:43 +02:00
Cedric Roux
b0e50688ee
cleanup: introduce ticktime_filter()
2016-06-09 16:20:32 +02:00
Florian Kaltenberger
0d11b26337
Merge remote-tracking branch 'origin/develop' into enhancement-64-phy_test
2016-06-09 13:31:35 +02:00
Rohit Gupta
f5b368461b
fixed a bug in initialization of DCI
2016-06-09 12:16:57 +02:00
Cedric Roux
f9843f46bc
add UL/DL harq ticktime view to enb.c
2016-06-09 10:51:24 +02:00
Cedric Roux
6f72af21c2
make tick larger in ticktime.c
...
3 pixels wide look better than 1
2016-06-09 10:47:27 +02:00
Cedric Roux
c27e69f633
add harq_pid to some T traces
...
- update T_messages.txt
- update call sites of the T for thoses traces
2016-06-09 10:44:47 +02:00
Cedric Roux
bdd8ee3eed
restructure a bit the views in enb.c
...
more readable, still not satisfying though
2016-06-09 10:41:38 +02:00
Cedric Roux
e268281233
add T log ENB_MASTER_TICK
2016-06-09 10:40:53 +02:00
Raymond Knopp
889262e109
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-06-08 23:15:06 -07:00
Raymond Knopp
f7b6d16c4e
initializations for LMSSDR
2016-06-08 19:27:11 +02:00
Cedric Roux
1dff773eb2
add 'and' filter operation
2016-06-08 16:47:45 +02:00
Cedric Roux
72f56da6b6
add a filter to loggers
...
events are accepted by the logger if the filter accepts them
the filter is optional (no filter means to accept all events)
2016-06-08 16:35:08 +02:00
Cedric Roux
dfd2a541c3
Merge branch 'bugfix-11i-oaisim-frame' into 'develop'
...
improve the use of the variable "frame" in oaisim
The modifications are only in oaisim.c.
It is thus needless to run soft-modem tests.
Only oaisim tests are required.
See merge request !34
2016-06-08 15:52:51 +02:00
Cedric Roux
63652f94fa
tick timeview/log
...
this is like timeview but the plotting is done at frame/subframe
resolution of a given reference clock signal, let's say.
The realtime information of the events is not used. It's all
logical.
It will be used to log harq processes for the moment.
2016-06-08 12:50:35 +02:00
Cedric Roux
d350ee329d
improve the use of the variable "frame" in oaisim
2016-06-08 12:25:07 +02:00
Sandeep Kumar
89eba068aa
added comments on IF# split point phy_TX
2016-06-08 11:41:14 +02:00
Rohit Gupta
cfb35007f4
Merge branch 'feature-34-test_framework' into develop
2016-06-08 02:00:15 +02:00
Rohit Gupta
0dc952e2aa
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-06-08 02:00:00 +02:00
Rohit Gupta
32c45ad517
Gitlab CI: updates to config file
2016-06-08 01:59:43 +02:00
Raymond Knopp
b7c37c1078
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-08 00:32:47 +02:00
S. Sandeep Kumar
d51d5deeac
fix some structures and add more details to if4 functions
2016-06-08 04:00:13 +05:30
Raymond Knopp
1654af9a63
removed some traces that flooded the screen. Added UE information in PHY/MAC/RRC to indicate status of active/failing UEs every 10.24 seconds.
2016-06-08 00:28:16 +02:00
Raymond Knopp
7520ae6e47
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-07 20:41:13 +02:00
Sandeep Kumar
d5d1dd0e8a
fixed packet struct types
2016-06-07 18:19:26 +02:00
Sandeep Kumar
f101c6634b
added original ALAW compression
2016-06-07 17:17:36 +02:00
Rohit Gupta
eade3fe8d0
Fix for RRH Config file (5MHz)
2016-06-07 17:05:38 +02:00
Rohit Gupta
bc4bd8200f
Fix for RRH Config file (10MHz)
2016-06-07 17:04:07 +02:00
Anta Huang
86a34cd5fb
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-06-07 15:50:00 +02:00
Anta Huang
1c915fec00
Merge branch 'feature-44-dedicated-drb' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-06-07 15:46:58 +02:00
Anta Huang
afb5e36c69
* update the mapping of qci to DRB
2016-06-07 15:43:43 +02:00
Rohit Gupta
5967d44ff9
Gitlab CI: add debugging info to gitlab logging
2016-06-06 21:13:30 +02:00
Rohit Gupta
21155366eb
Gitlab CI: send kill signal for previously running programs
2016-06-06 20:20:17 +02:00
Rohit Gupta
4a024f310d
send kill signal to iperf3
2016-06-06 20:18:34 +02:00
Rohit Gupta
9b9f068224
Gitlab CI: fix for killing iperf3
2016-06-06 20:06:29 +02:00
Cedric Roux
2b1287384a
bugfix: include T.h in phich.c
2016-06-06 17:52:05 +02:00
Cedric Roux
e0966584cf
monitor tracee and local tracer to avoid "dead" processes
...
this may be removed at some point, it's very brutal. But when you
write some code, it may happen (it "may"!!) that *sometimes* the
code does not work and crashes. In thoses cases I prefer the
local tracer (or the tracee) to go away immediately without even
thinking about it maybe still running in the background.
In case of monitoring (as opposed to debugging) maybe it's preferable
to let the process live its life as it wants.
Time will tell.
2016-06-06 12:30:50 +02:00
Cedric Roux
c96039108c
update enb.c to trace uplink dci/retrans/ack/nack
...
and also start to use the PHY textview
2016-06-06 11:41:39 +02:00
Cedric Roux
b87405ad7c
add PHY uplink dci/retrans/ack/nack T traces
2016-06-06 11:40:46 +02:00
Cedric Roux
127ca5ee81
minor improvement
...
always a good idea to crash in unknown situations...
2016-06-06 09:35:12 +02:00
Rohit Gupta
bcd96a7ff0
Merge branch 'develop' into feature-44-dedicated-drb
2016-06-06 01:18:37 +02:00
Rohit Gupta
c7f00e3e1e
Merge branch 'feature-34-test_framework' into develop
2016-06-06 01:18:11 +02:00
Rohit Gupta
8c6b8456e5
Merge branch 'feature-34-test_framework' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-34-test_framework
2016-06-06 01:17:49 +02:00
Rohit Gupta
faf58fcec8
Gitlab CI: fixes for Sony Experia M4
2016-06-06 01:17:17 +02:00
Rohit Gupta
659ee13201
minor fix to reset script for Sony Experia
2016-06-05 22:14:46 +02:00
Rohit Gupta
ed852796ba
Gitlab CI: minor fix to iperf3 script
2016-06-05 21:21:14 +02:00
Cedric Roux
0b7d242083
enb.c stays alive if tracee dies
...
enb.c will then try to reconnect.
2016-06-05 17:57:57 +02:00
Cedric Roux
88c44ef9fe
rename store_config_file load_config_file
2016-06-05 17:54:38 +02:00
Rohit Gupta
418a8a4599
Merge branch 'develop' into feature-34-test_framework
2016-06-05 17:53:25 +02:00
Cedric Roux
18c2bdda98
don't abord if read fails in get_message
...
it may legitimately happen when the tracee is ctrl+c'ed.
Let's print something though because read may fail for
other reasons. Why not?
2016-06-05 17:47:08 +02:00
Cedric Roux
1a9d614f0e
take care of SIGPIPE received when writing a dead socket
...
write() on a socket with the other end closed throws a SIGPIPE.
Let's ignore this signal. write() will return an error anyway...
2016-06-05 17:42:44 +02:00
Cedric Roux
83350a807f
reading a socket does not abort anymore
...
fullread has been changed, so get_event too, and the callers also
for the moment the callers crash, enb.c will be a bit more clever,
the others to see...
2016-06-05 17:39:06 +02:00
Rohit Gupta
7de74e858e
Gitlab CI: minor fixes
2016-06-05 16:11:41 +02:00
Cedric Roux
9338f06e90
socket_send does not crash anymore but returns an error
...
The application (enb.c basically) will now monitor the socket
and reconnect if it dies. See following commits.
2016-06-05 13:10:52 +02:00
Cedric Roux
51292c2472
event_selector does not deal with socket anymore
...
It was wrong.
Plus it is starting work so as to make enb.c not crashing if
the tracee goes away (maybe also textlog and vcd, but those are of
less importance).
2016-06-04 23:48:03 +02:00
Cedric Roux
daf9f16b9b
minor: gui/image.c did include string.h
2016-06-04 23:23:19 +02:00
Cedric Roux
a9d91337c0
bugfix: local tracer to accept connection from everywhere
2016-06-04 22:41:14 +02:00
Raymond Knopp
b96a6e4e97
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-04 10:18:25 +02:00
Raymond Knopp
05ce533e7b
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-03 22:58:12 -07:00
Raymond Knopp
eea7764ace
updated oai_L1_L2_procedures.pdf
2016-06-03 22:57:16 -07:00
Rohit Gupta
fb75c980ad
Merge branch 'feature-42-doxygen' into develop
2016-06-04 00:28:40 +02:00
Rohit Gupta
6bb5ed5cf6
warning removal
2016-06-04 00:21:42 +02:00
Rohit Gupta
b5ebc81c99
Merge branch 'develop' into feature-42-doxygen
2016-06-04 00:01:10 +02:00
Rohit Gupta
8c0172f8a1
Merge branch 'develop' into feature-44-dedicated-drb
2016-06-03 23:54:22 +02:00
Rohit Gupta
3b7fde9436
Merge branch 'feature-34-test_framework' into develop
2016-06-03 23:54:06 +02:00
Rohit Gupta
4486328e06
Merge branch 'feature-34-test_framework' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-34-test_framework
2016-06-03 23:53:31 +02:00
Rohit Gupta
8a5a9f79e0
Merge branch 'develop' into feature-44-dedicated-drb
2016-06-03 23:52:34 +02:00
Rohit Gupta
793efd0ac6
Merge branch 'feature-34-test_framework' into develop
2016-06-03 23:51:37 +02:00
Rohit Gupta
fd8a6260c0
Gitlab CI: deleted reduntant files for test setup
2016-06-03 23:50:54 +02:00
Rohit Gupta
ad98ecef40
Merge branch 'develop' into feature-34-test_framework
2016-06-03 23:48:14 +02:00
Rohit Gupta
b4f6e77a3f
Merge branch 'feature-34-test_framework' into develop
2016-06-03 23:47:55 +02:00
Rohit Gupta
07d7fc70ed
Gitlab CI: updates to test setup for new version of openair-cn
2016-06-03 23:47:15 +02:00
Sandeep Kumar
ad1114c7f7
added more structural changes
2016-06-03 17:54:32 +02:00
Sandeep Kumar
7b3fe85358
fixed file name, updated the IF4 frame structure, added dummy functions for frame generation
2016-06-03 16:23:22 +02:00
Sandeep Kumar
448b26f625
added draft of IF4 packet frame structure
2016-06-03 15:39:36 +02:00
Raymond Knopp
a396fdc5b0
moving if4tools.c
2016-06-03 14:04:01 +02:00
Raymond Knopp
769de126d9
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-03 14:02:26 +02:00
Raymond Knopp
d420f75f3d
nothing special
2016-06-03 14:01:34 +02:00
Raymond Knopp
3fb221d316
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-03 09:55:19 +02:00
Raymond Knopp
bba649ac91
removal of slot_fep_ul in phy_procedures_rx_uespec
2016-06-03 09:54:49 +02:00
Raymond Knopp
fd70527bf2
updates for 2 RXn-TXnp4 threads
2016-06-02 16:00:02 -07:00
Raymond Knopp
4996f9855d
first draft of the send_if function
2016-06-02 19:13:20 +02:00
Florian Kaltenberger
27df05b1c2
Merge branch 'issue-109-deadline-name' into 'develop'
...
Issue 109 deadline name
See merge request !32
2016-06-02 16:02:56 +02:00
Raymond Knopp
3bb81c073e
tx_scheduling_advance removed and tx_sample_advance added to trx_write in lte-enb.c
2016-06-02 06:16:50 -07:00
Raymond Knopp
71ed2c7d48
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-02 05:19:59 -07:00
Cedric Roux
91e57c8a79
fully integrate the T into build_oai/CMake
...
The unit simulators may still need some checks.
2016-06-02 12:39:56 +02:00
Cedric Roux
fb6746537a
bugfix: include T.h or compilation fails when T unused
...
(the T macro is then undefined)
2016-06-02 12:38:33 +02:00
Anta Huang
fea2d300e3
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface4g into feature-44-dedicated-drb
2016-06-02 11:49:41 +02:00
Navid Nikaein
d28e9e3d0d
update the readme file
2016-06-02 10:33:02 +02:00
Raymond Knopp
a2234d18a6
new procedures document
2016-06-02 00:41:28 -07:00
Raymond Knopp
f895f42c9d
frame/subframe numbering
2016-06-02 09:34:56 +02:00
Raymond Knopp
ba93bbe99e
corrected frame_tx calculation in lte-enb.c
2016-06-01 21:40:59 -07:00
Raymond Knopp
ac615a4c1f
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
2016-06-01 20:47:02 +02:00
Raymond Knopp
deab4aa208
debugging with USRP
2016-06-01 20:44:57 +02:00
Cedric Roux
2cb4d347d0
make the local tracer more robust
...
if a read from the remote tracer's socket fails, let's smash
the socket and wait for another remote tracer
2016-06-01 17:44:53 +02:00
Cedric Roux
2219fe54ef
the tracer can now stop its tracing without disturbing the tracee
...
it's buggy. Next commit to fix it.
The problem is if the tracer exits while sending a message.
The local tracer will not get it full and will throw garbage
to the T in the tracee, leading to some bad things...
2016-06-01 17:18:57 +02:00
Cedric Roux
2966fae4a5
update lte-softmodem to deal with the locally integrated tracer
2016-06-01 16:15:55 +02:00
Cedric Roux
358a37910c
put local tracer in tracee
...
plus some cleanup here and there
2016-06-01 15:42:29 +02:00
Rohit Gupta
7cd09ab0ca
Merge branch 'feature-34-test_framework' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-34-test_framework
2016-05-31 22:48:57 +02:00
Rohit Gupta
5ffff3a8c8
Gitlab CI: minor fixes for UE configuration
2016-05-31 22:48:29 +02:00
Rohit Gupta
5c7610fa80
Merge branch 'feature-34-test_framework' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-34-test_framework
2016-05-31 22:24:31 +02:00
Rohit Gupta
e4f8b35731
minor fix for iperf3 script
2016-05-31 22:23:55 +02:00
Rohit Gupta
c2311b64b9
Gitlab CI: minor fix for bandrich UE config
2016-05-31 22:21:30 +02:00
Rohit Gupta
f6e4cc2b0a
fix stop_exmimo2 script to avoid kernel crashes
2016-05-31 21:26:11 +02:00
Rohit Gupta
4df4c009dc
Gitlab CI: iperf3 usage
2016-05-31 20:17:20 +02:00
Xiwen JIANG
b1f64b22a6
bug fixed for oarf_get_frame
2016-05-31 19:13:45 +02:00
Cedric Roux
05afc953e8
cleanup - _T_cache variable had no place here...
2016-05-31 18:50:01 +02:00
Cedric Roux
f5313266ad
integration of local tracer into tracee - step 3
...
get rid of forward.c, make everything static inside local.c
2016-05-31 18:30:59 +02:00
Cedric Roux
3b226410d2
cleanup
...
remove forward stuff from defs.h
remove defs.h from local.c and forward.c
2016-05-31 18:09:26 +02:00
Cedric Roux
b3889a44be
integration of local tracer into tracee - step 2
...
The local tracer now waits for the remote tracer to connect,
that's no more the other way around.
All the remote tracers (textlog, enb, vcd) have also been converted.
2016-05-31 18:01:49 +02:00
Xiwen JIANG
719a94d2c4
add exmimo octave api env to TDD rec proj
2016-05-31 17:38:01 +02:00
Xiwen JIANG
7ca6a84e20
bug fixed for oarf_get_frame
2016-05-31 17:37:19 +02:00
Cedric Roux
b6854b15b8
cleanup
2016-05-31 17:18:30 +02:00
Cedric Roux
6b9db37802
start integrating local tracer directly into tracee
...
first step: let the tracee connect before the remote tracer
and let's have a "no wait" mode where the local tracer starts
the tracee before the remote tracer is connected
2016-05-31 17:06:45 +02:00
Cedric Roux
a5e63b2726
rename T_SEND to T_COMMIT, sounds better
...
get rid of T_send(), no use anymore
2016-05-31 15:56:35 +02:00
Cedric Roux
3a71ecb759
remove T_USE_SHARED_MEMORY
...
The T only works when it's TRUE, the version without shared memory
is not supported anymore.
2016-05-31 15:47:55 +02:00
Rohit Gupta
db8b85d5f6
Gitlab CI: fix for search/replace in test case config file
2016-05-31 14:49:19 +02:00
Rohit Gupta
aee83ada50
Gitlab CI: remove binding to loopback interface for EPC
2016-05-31 11:43:04 +02:00
Rohit Gupta
14df2163e7
Merge branch 'develop' into issue-109-deadline-name
2016-05-30 20:15:35 +02:00
Rohit Gupta
5c064691c3
Merge branch 'feature-34-test_framework' into develop
2016-05-30 20:15:12 +02:00
Rohit Gupta
079f06c2e7
minor fix for timeout for resetting RF interface
2016-05-30 20:14:58 +02:00
Rohit Gupta
64667fce6d
remove binding to loopback interface for 0155* tests
2016-05-30 20:14:42 +02:00
Xiwen JIANG
d621de7fb3
enable TM7 in oaisim
2016-05-30 18:38:52 +02:00
Xiwen JIANG
b6e7f7ec51
tx_eNB -> ant_ports in oaisim
2016-05-30 17:58:31 +02:00
Xiwen JIANG
5370685740
Merge branch 'master' into feature-21-TM7
2016-05-30 17:13:09 +02:00
Navid Nikaein
3dc0e4dd86
* route DlInformationTransfer to SRB2 if it is active
...
* configure dedicated DRBs based on the transaction id
* fix the issue in oaisim to work with S1 interface
2016-05-30 13:17:34 +02:00
Navid Nikaein
956dfa0922
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-05-30 13:11:29 +02:00
Raymond Knopp
7d6746b4b0
added lte-enb to lte-softmodem-noS1 target
2016-05-30 09:58:48 +02:00
Raymond Knopp
a60e701366
bug fixing for new L1 scheduling, updates to vcd tracing
2016-05-30 00:36:07 +02:00
Raymond Knopp
cbc4160ba4
added targets/DOCS/oai_L1_L2_procedures.pdf
2016-05-29 15:42:51 -07:00
Raymond Knopp
e198a7423f
updated unitary simulations and corrected bugs in threading and scheduling of L1 procedures.
2016-05-27 10:21:23 -07:00
Cedric Roux
655e48c5dc
enable legacy RRC info/error/warning by default in enb.c
...
can be deactivated on the command line or in the gui
2016-05-27 18:40:09 +02:00
Cedric Roux
d9202e43f7
add RRC traces to the RRC view in enb.c
2016-05-27 18:39:40 +02:00
Cedric Roux
2e6c04cd3f
add T traces to rrc_eNB.c
2016-05-27 18:38:56 +02:00
Cedric Roux
f6bfd8a397
bugfix: T_ENB_RRC_CONNECTION_RECONFIGURATION was done at the wrong place
2016-05-27 18:38:25 +02:00
Cedric Roux
cc67ce6dcc
add RRC messages to T_messages.txt
2016-05-27 18:35:43 +02:00
Cedric Roux
4a80fd3704
add includes so that oaisim compiles with the T
2016-05-27 18:35:08 +02:00
Cedric Roux
fc1c621a18
better colors in enb.c
2016-05-27 17:27:43 +02:00
Cedric Roux
eeefd61433
let's print nanosecond in times of textlog instead of closest millisecond
2016-05-27 17:26:29 +02:00
Raymond Knopp
2b6c7a52a0
intermediate save to switch machines
2016-05-27 13:33:19 +02:00
Raymond Knopp
b188a5cfeb
changed threading (acqusition is slot based). removal of eNB_thread. timing all based on received timestamp.
2016-05-26 15:14:57 -07:00
Dominique Nussbaum
7e03fe232e
fixes for 20MHz
2016-05-26 15:47:57 +02:00
Rohit Gupta
4963c6422c
Merge branch 'feature-34-test_framework' into develop
2016-05-26 11:03:38 +02:00
Rohit Gupta
aff21c43f7
Gitlab CI update for change in config files + handling of resetting of UE
2016-05-25 21:48:58 +02:00
Rohit Gupta
ebfcbce425
remove redundant config files of eNB
2016-05-25 19:54:51 +02:00
Rohit Gupta
8f706667e5
Merge branch 'develop' into feature-34-test_framework
2016-05-25 19:49:18 +02:00
Cedric Roux
32302fc233
add legacy logs to enb.c
2016-05-25 17:59:13 +02:00
Cedric Roux
0feda7fdfe
add some RRC logs
...
- adding T macros here and there
- modify the T_messages.txt
- modify enb.c to trace them in the RRC view
2016-05-25 17:38:44 +02:00
Cedric Roux
2138a47e41
more work on enb.c
...
plus add rrc connection setup complete tracing
2016-05-25 16:51:33 +02:00
Cedric Roux
45728df27c
bugfix: wrong index
2016-05-25 16:47:43 +02:00
Cedric Roux
2e64d54e9e
the tracee (lte-softmodem) now sends the content of T_messages.txt
...
as special events.
If we store all received events to a file, this dump is now
self-contained. Helps to analyze traces.
Some functions have also been factorized in the process, too much
duplication.
(Also tracer/Makefile was forgotten in previous commit, included
in this one...)
2016-05-25 14:15:47 +02:00
Cedric Roux
806b6a9595
remove remote_old.c
2016-05-25 13:55:37 +02:00
Cedric Roux
187e7906cb
use Xft to draw strings
2016-05-25 10:30:25 +02:00
Navid Nikaein
107eec224e
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-05-25 09:36:32 +02:00
Navid Nikaein
05c44f1c2a
merge with the develop branch
2016-05-25 09:36:15 +02:00
Cedric Roux
120951d732
minor color change in enb.c
2016-05-24 17:02:38 +02:00
Cedric Roux
b36c45b20d
minor: gui/image.c log paint
2016-05-24 16:25:49 +02:00
Cedric Roux
9cedfbcf1b
add openair logo to enb.c
2016-05-24 15:43:55 +02:00
Cedric Roux
d08a2b1a60
image widget
...
many assumptions about X backed were made, to be refined if does not
work properly in some setups
2016-05-24 15:38:44 +02:00
Cedric Roux
50c00218c7
space widget, to add some space in the gui
2016-05-23 16:18:00 +02:00
Cedric Roux
25546ae920
cleanup: better to on/off traces outside of gui creation
2016-05-20 16:49:58 +02:00
Cedric Roux
c24855b229
reverse button 1 and 3 to start and stop autoscroll in view/time.c
...
it seems more natural to stop autoscroll with button 3 and start it
with button 1
2016-05-20 16:17:24 +02:00
Cedric Roux
1814707287
add groups VCD_VARIABLE and VCD_FUNCTION
2016-05-20 16:15:37 +02:00
Cedric Roux
5dec2748ec
add a basic VCD plotter
2016-05-20 16:11:44 +02:00
Cedric Roux
f38476aee4
import VCD into the T
2016-05-20 15:27:14 +02:00
Cedric Roux
131b1bda23
remove dead code
2016-05-20 14:57:07 +02:00
Raymond Knopp
3cfbb76840
Merge branch 'enhancement-10-harmony' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-10-harmony
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/dlsch_modulation.c
openair1/SCHED/phy_procedures_lte_eNb.c
2016-05-20 03:49:36 -07:00
Cedric Roux
55a4b2cef4
scroll view/time.c if control+mouse wheel
2016-05-19 18:01:06 +02:00
Cedric Roux
392a818b7b
view/time.c autoscroll and zoom
2016-05-19 17:37:28 +02:00
Cedric Roux
34e3945249
bugfix - one needs to translate to local coordinates
2016-05-19 17:23:28 +02:00
Cedric Roux
e4fd229641
gui/timeline.c click event
2016-05-19 16:00:10 +02:00
Cedric Roux
5c5f54709c
gui/timeline.c scroll up/down event to include x, y, key_modifiers
2016-05-19 15:47:40 +02:00
Cedric Roux
4511fe7778
add key modifiers to button event
2016-05-19 15:28:28 +02:00
Cedric Roux
262ab7090c
bugfix/improve/simplify view/time.c
2016-05-19 14:55:48 +02:00
Cedric Roux
0e03381016
log ack/nack at phy level (process_harq_feedback)
2016-05-17 18:48:11 +02:00
Cedric Roux
b0ee0f4c82
add UE downlink DCI logging
2016-05-17 18:10:36 +02:00
Cedric Roux
bc3aa8581f
add group ENB to T_messages.txt
2016-05-17 17:36:08 +02:00
Cedric Roux
5822e94e5f
starting work on DL/UL DCI graphical logging
2016-05-17 17:33:45 +02:00
Cedric Roux
f8ae07d388
bugfixes in view/time.c
2016-05-17 17:05:14 +02:00
Cedric Roux
2e7ab60d70
zoom in/out in timeline
2016-05-17 16:18:29 +02:00
Cedric Roux
7d1665fe42
add a timelog to enb.c
2016-05-17 15:06:45 +02:00
Xenofon Foukas
0f5b01457b
Merge remote-tracking branch 'oai/develop' into oai-integration
...
Conflicts:
openair1/SCHED/phy_procedures_lte_eNb.c
openair2/LAYER2/MAC/eNB_scheduler.c
2016-05-17 13:18:09 +01:00
Cedric Roux
b50fb79dd7
starting to work on the enb monitor/debugger
2016-05-17 12:29:25 +02:00
Cedric Roux
421aac43a0
add skip_delay parameter to the framelog
...
not very clean, might be reworked at some point
the idea is to compute much less 'log' than what
was done
2016-05-17 12:26:53 +02:00
Raymond Knopp
d9761e7adc
added missing structure element in eNB_RRC_UE_t : ue_release_timer_thres
2016-05-16 05:47:02 -07:00
Raymond Knopp
e6f201a257
Merge branch 'develop', remote-tracking branch 'origin' into enhancement-10-harmony
2016-05-16 05:29:47 -07:00
Raymond Knopp
80b3850fa1
removal of mod_sym_t
2016-05-16 05:29:04 -07:00
laurent
cb99f6a05a
LOWLATENCY fix2
2016-05-16 11:50:41 +02:00
laurent
cb0bc98dfa
fix LOWLATENCY name
2016-05-16 11:39:43 +02:00
Cedric Roux
30ffc8d20e
bugfix and optimizations in view/time.c
...
not very efficient, to be refined
2016-05-15 23:17:23 +02:00
Cedric Roux
f49489a632
add _silent functions for gui/timeline.c, the way view/time.c uses it
...
requires those optimizations
2016-05-15 23:15:06 +02:00
Raymond Knopp
d3d423f51e
split phy_procedures_eNB_TX into sub-modules for better understanding. No functional differences.
2016-05-15 14:10:04 -07:00
Raymond Knopp
475f1f8937
removed -mavx2 from CMakelists.txt for non AVX2 targets
2016-05-15 02:07:06 -07:00
Cedric Roux
0cf4738d70
time view, not tested at all
2016-05-13 19:00:21 +02:00
Cedric Roux
ee62356349
new function timeline_get_width
2016-05-13 15:29:08 +02:00
Cedric Roux
48f0c341a1
maybe bugfix, maybe useless: return wanted size if allocated size
...
is zero in get_dimensions for xy_plot
2016-05-13 15:27:23 +02:00
Raymond Knopp
195345b6a5
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-05-13 04:59:41 -07:00
Raymond Knopp
7f9421e4ce
RRCConnectionSetupComplete-Timer
2016-05-13 02:15:09 -07:00
Cedric Roux
69f14c37fa
timelog
2016-05-12 17:26:42 +02:00
Cedric Roux
944dad4caa
GUI timeline widget
2016-05-12 17:03:07 +02:00
Cedric Roux
52fae6a830
minor "typo"
2016-05-12 15:18:35 +02:00
Cedric Roux
2eb0d4c90f
add time to textlog if available
2016-05-12 15:12:21 +02:00
Cedric Roux
df5afaa93d
store received time in events for later processing
2016-05-12 13:00:19 +02:00
Cedric Roux
e5689a5bd1
introducing a generic logger "class"
2016-05-12 10:59:59 +02:00
Cedric Roux
d8ec913bcd
minor bugfix - forgot an ifdef
2016-05-11 18:33:40 +02:00
Cedric Roux
1261ae753a
update remote_old.c to deal with time in events
2016-05-11 18:32:54 +02:00
Cedric Roux
aacb2ff7c2
send time in events
...
this calls clock_gettime for each active T macro, hopefully it
does not eat too much CPU
can be deactivated by commenting one line in T_defs.h
2016-05-11 18:26:30 +02:00
Cedric Roux
3e38cd2651
add frame parameter to rx_pucch for the T logger
2016-05-11 16:35:27 +02:00
Cedric Roux
db4882857b
TTI view
2016-05-11 15:39:09 +02:00
Cedric Roux
43f99ff6fc
convert to dB in ttilog if requested
2016-05-11 15:35:44 +02:00
Cedric Roux
70ebbd7e19
new function xy_plot_get_dimensions
2016-05-11 15:34:44 +02:00
Raymond Knopp
111d6222b5
Merge branch 'bugfix-CCEallocations' into develop
2016-05-11 11:55:44 +02:00
Raymond Knopp
4ea125e195
modified SoDeRa band 13 50 PRB configuration file for EPC on localhost with eNodeB
2016-05-11 11:53:58 +02:00
Raymond Knopp
804df1b7db
removed minor AVX2 optimizations from 16-bit turbo decoder. had issues for small block lengths in UE.
2016-05-11 00:50:23 +02:00
Raymond Knopp
f92906d901
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-05-10 12:32:45 -07:00
Raymond Knopp
8c5ebac1c1
fixed segfault in pdcchsim (lte_param_init missing threequarter_fs)
2016-05-10 19:47:33 +02:00
Raymond Knopp
4070a3affa
fixed CCE allocation bug.
2016-05-10 19:34:36 +02:00
Cedric Roux
029adbf368
bugfix: forget to break and all gets heck!
2016-05-10 11:21:40 +02:00
Cedric Roux
24af122475
bugfix: calloc may fail
2016-05-10 11:19:56 +02:00
Cedric Roux
724b6622dd
TTI logger
2016-05-10 10:29:04 +02:00
Cedric Roux
b04a448b62
bugfix: calloc arguments' wrong order
2016-05-10 10:01:45 +02:00
Raymond Knopp
e2c3222802
removal of EXPRESSMIMO #ifdef's in lte-ue. move UE-specific code from lte-softmodem.c to lte-ue.c
2016-05-09 23:40:36 -07:00
gauthier
8df63bdfe8
Increased search matching packet range, may need to be increased again
2016-05-10 08:29:11 +02:00
nikaeinn
b133c791c9
adjust the rrh config params
2016-05-10 01:06:49 +02:00
nikaeinn
cb50fd1d39
add a new line between each configuration section
2016-05-09 19:26:05 +02:00
Cedric Roux
497c64a964
XY view
2016-05-09 18:26:03 +02:00
Cedric Roux
8195e42d75
preliminary work on frame logger
...
not tested
2016-05-09 16:38:08 +02:00
Cedric Roux
32b2264fbd
support multiple plot per xy_plot
2016-05-09 12:13:18 +02:00
Rohit Gupta
15afc52012
Merge branch 'feature-34-test_framework' into bugfix-9i-opt-wireshark
2016-05-09 11:34:43 +02:00
Rohit Gupta
a363ffa8e0
trace disk usage in test framework
2016-05-09 11:06:22 +02:00
Raymond Knopp
58ba008937
added lte-enb.c which extracts all enb-specific code from lte-softmodem. corrects merge from develop branch in dlsch_modulations.c. removal of HW-specific code in lte-softmodem.c
2016-05-08 10:23:34 -07:00
Raymond Knopp
7e31cb2afa
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
...
Conflicts:
openair1/PHY/LTE_ESTIMATION/lte_dl_mbsfn_channel_estimation.c
openair1/PHY/TOOLS/lte_dfts.c
openair1/SIMULATION/LTE_PHY/dlsim.c
2016-05-06 02:57:05 -07:00
Cedric Roux
277ddb139d
middle button to toggle event reception in event selector window
2016-05-04 17:54:00 +02:00
Cedric Roux
16e17d346f
positioner widget - the child is positioned in the middle, does not grow
2016-05-04 17:27:32 +02:00
Cedric Roux
a74f865917
more logical handling of x/y in button events
...
click at x/y refers to the toplevel window and the widget knows
its own x/y position, so let's keep the x/y of the click as is
and let the down widget handle translation by itself
something like that
2016-05-04 17:13:38 +02:00
Cedric Roux
e299a7e4d3
bugfix - it may be that the container has only one child when we delete it
2016-05-04 16:04:16 +02:00
Cedric Roux
8f50b77e30
make label clickable (the user has to ask for it, it's non-clickable by default)
2016-05-04 15:56:06 +02:00
Cedric Roux
d4a4bba32e
minor fix - remove unused variable
2016-05-04 15:55:24 +02:00
Cedric Roux
deefb1854f
delete children widget
2016-05-04 15:21:52 +02:00
Cedric Roux
87acde28f7
- change group names in T_messages.txt for legacy logs
...
- add group ALL
2016-05-04 11:28:32 +02:00
Cedric Roux
185e6a4e1e
warn when memory usage of local tracer grows too much
2016-05-04 11:18:09 +02:00
Cedric Roux
d4f5ab7745
clarify "pos" in database.c
...
the list of IDs is stored alphabetically so when accessing the database
with an ID one needs an indirection to get the correct record.
"pos" was not clear. "id_to_pos" is clearer.
2016-05-04 10:48:12 +02:00
Cedric Roux
e54f87a00e
bugfix: forgot malloc return check
2016-05-04 10:38:11 +02:00
Cedric Roux
8cca28b3e7
put textlog.[ch] in logger/ and rename remote.c to textlog.c
2016-05-04 10:31:42 +02:00
Cedric Roux
1dea159028
gui "text_list" becomes "textlist"
...
view "textlist" becomes "view_textlist" (this one may change at some
point)
2016-05-04 10:09:33 +02:00
Cedric Roux
4d7440bfcf
add more locks in view/textlist.c
...
no deadlock should be possible as of the current state of
things. When the textlist's lock is set the GUI lock is
never on.
Let's cross fingers that things don't change crazily in
the future...
2016-05-03 16:40:53 +02:00
Cedric Roux
0d0756c0c9
typo
2016-05-03 16:33:50 +02:00
Navid Nikaein
3430dbc41d
merge with the develop branch
2016-05-03 15:51:07 +02:00
Rohit Gupta
07d8e7d263
Merge branch 'develop' into bugfix-9i-opt-wireshark
2016-05-02 17:09:36 +02:00
Rohit Gupta
3a29458b95
Merge branch 'feature-34-test_framework' into develop
2016-05-02 17:07:23 +02:00
Rohit Gupta
428f359680
fix for race conditions in OPT/Wireshark tracing tool
2016-05-02 17:03:57 +02:00
Cedric Roux
d45551dda1
deal with scroll in text list
2016-05-02 16:56:38 +02:00
Cedric Roux
f0d32a8611
smaller event selector window
2016-05-02 16:55:17 +02:00
Rohit Gupta
4bc4650a18
Merge branch 'develop'
2016-05-02 16:00:35 +02:00
Rohit Gupta
e59f659fad
Merge from bugfix-48-L1L2Signalling to develop
2016-05-02 15:12:11 +02:00
Cedric Roux
98c46f70f7
add a very basic tracee to ease debugging of the tracer
2016-05-02 14:51:12 +02:00
Cedric Roux
66f03d3978
change the textlog window color and size
2016-05-02 14:39:12 +02:00
Cedric Roux
042f284bc2
introduce widget_dirty - not only text list might want the optimization
2016-05-02 14:33:07 +02:00
Cedric Roux
ca3a05a592
optimize text list view
...
when too much data has been sent to the text list view, way too much
GUI processing is done, let's batch-process the changes and then tell
the GUI that something has changed
2016-05-02 14:26:16 +02:00
Rohit Gupta
3aab3bfa26
update for Gitlab CI to detect failed machines
2016-05-02 14:25:49 +02:00
Rohit Gupta
8ada7ce501
update for Gitlab CI to detect failed machines
2016-05-02 12:24:56 +02:00
Cedric Roux
d3997824fc
add option -no-gui to disable GUI entirely for textlog
...
(no more event selector)
2016-05-02 12:16:22 +02:00
Cedric Roux
23ec84ef6b
option -debug-gui to textlog
2016-05-02 12:09:45 +02:00
Cedric Roux
629eb51151
trying other colors in event selector
2016-05-02 11:57:01 +02:00
Cedric Roux
3a622778e5
basic event compression
2016-05-02 11:26:54 +02:00
Rohit Gupta
b6d92ff8d5
Doxygen support for LMSSDR RF
2016-05-02 11:16:18 +02:00
Cedric Roux
e4e4647345
cleanup logging in the GUI
2016-05-02 09:47:30 +02:00
Cedric Roux
c3e59b16b3
some work on event selector
2016-05-01 22:43:36 +02:00
Cedric Roux
e6d5f22c8b
add message 1 to the T
...
This message sends configuration for all events.
2016-05-01 22:39:23 +02:00
Cedric Roux
d079dadb95
changing the growable attribute of a child requires a repack, not
...
just "dirty"
2016-05-01 17:36:24 +02:00
Cedric Roux
68106e4a35
start working on the event selector window
2016-05-01 14:16:50 +02:00
Cedric Roux
bd50539fda
Revert "instrument X using gcc's -finstrument-functions"
...
This reverts commit 4911b107da .
The idea was to keep the stuff in the git history.
2016-05-01 14:13:15 +02:00
Cedric Roux
4911b107da
instrument X using gcc's -finstrument-functions
...
used to debug locking
2016-05-01 14:10:59 +02:00
Cedric Roux
951882adaa
redraw window when receiving MapNotify (not sure if correct)
2016-05-01 14:09:20 +02:00
Cedric Roux
6ffa65f1d2
get rid of X locks, there were missing glock/gunlock here and there
2016-05-01 14:06:20 +02:00
Cedric Roux
9463903d3a
typo fix
2016-05-01 12:56:22 +02:00
Cedric Roux
018da05897
container deals with growable children
2016-04-29 20:10:19 +02:00
Cedric Roux
69e2a15e31
prepare container to deal with growable children
2016-04-29 19:40:31 +02:00
Cedric Roux
53fd31ef53
bugfix: hints are not valid anymore after adding a child to a container
2016-04-29 18:46:43 +02:00
Rohit Gupta
1b3aec522c
LMSSDR doxygen comments integration
2016-04-29 18:34:09 +02:00
Rohit Gupta
0d88c9c42c
minor typo in BladeRF comments
2016-04-29 18:32:32 +02:00
Cedric Roux
88bef83d8b
X threading handling
2016-04-29 18:29:04 +02:00
Rohit Gupta
84fdd116c6
BladeRF comments + warnings removal
2016-04-29 18:18:38 +02:00
Cedric Roux
3bba991e77
some work on text list
2016-04-29 17:04:53 +02:00
Cedric Roux
2fb9ec7d54
background and foreground colors are first class citizens!
2016-04-29 15:53:13 +02:00
Cedric Roux
f2195ba4e3
notification system (from user input to application basically)
2016-04-29 15:51:44 +02:00
Rohit Gupta
e47ee57d24
addding LMSSDR into the testbench
2016-04-29 15:32:10 +02:00
Rohit Gupta
7db8d17736
Merge branch 'develop' into feature-42-doxygen
2016-04-29 14:24:47 +02:00
Cedric Roux
e742718c2d
handle button press/release
...
first version, to be finished
2016-04-28 17:10:55 +02:00
Cedric Roux
2df85ee84a
cleanup
2016-04-28 16:36:03 +02:00
Cedric Roux
c9f51868e2
add x_draw_clipped_string and use it in the text_list gui
2016-04-28 15:50:04 +02:00
Cedric Roux
ca945b53de
first version of textlog with GUI
...
introducing generic "view" with two instantiations: stdout and textlist
2016-04-28 15:02:01 +02:00
Cedric Roux
29859bb930
-r option becomes -p, it's more "natural"
2016-04-28 14:58:56 +02:00
Cedric Roux
7283168ffd
-l option renamed -r, it's more "natural"
...
plus there is a default now
2016-04-28 14:54:51 +02:00
Cedric Roux
624aba07dd
new function text_list_del
2016-04-28 14:54:14 +02:00
Rohit Gupta
a16127e85c
log test cases being executed in Gitlab CI
2016-04-28 14:48:55 +02:00
Rohit Gupta
83ad615699
Merge branch 'develop' into feature-34-test_framework
2016-04-28 13:48:01 +02:00
Cedric Roux
f8733535c9
cleanup
2016-04-27 18:31:55 +02:00
Cedric Roux
e15a809458
first version of a textlog remote logger
2016-04-27 18:31:34 +02:00
Cedric Roux
dca2143b04
add some functions in database.c
2016-04-27 18:29:17 +02:00
Rohit Gupta
fe87f960a4
Merge branch 'feature-34-test_framework' into develop
2016-04-27 17:27:53 +02:00
Rohit Gupta
878e9d21a3
minor fix for Huawei E398 modem script + stoppping UEs in test setup
2016-04-27 17:27:35 +02:00
Rohit Gupta
0ae272d988
Merge branch 'develop' into feature-34-test_framework
2016-04-27 17:16:23 +02:00
Cedric Roux
7dbb2b8c3f
id management / bug fixes in database
2016-04-27 14:10:47 +02:00
Cedric Roux
f0a704145b
add get_format to database
2016-04-27 12:13:53 +02:00
Cedric Roux
8e7ee86cc9
remote.c becomes remote_old.c
2016-04-27 11:47:35 +02:00
Cedric Roux
7ef7fdfa4a
create database.h, all in defs.h is messy
2016-04-27 11:32:13 +02:00
Rohit Gupta
2f529ce8d1
hotfix for gnutls/nettle installation from source to avoid conflicts with openair-CN installation
2016-04-27 11:23:58 +02:00
Cedric Roux
0a820ba1ce
define T_MAX_ARGS
2016-04-27 11:16:20 +02:00
Cedric Roux
092f7ce546
parse FORMAT from config file
2016-04-27 11:06:20 +02:00
Rohit Gupta
26071b9a48
Merge branch 'bugfix-107-odroid-build' into 'bugfix-48-L1L2signaling'
...
added fixes to build on odroid/xu4 platform
changes on bugfix-48-L1L2Signaling to build for odroid platform
the branch has been tested to build on x86 platform
- builds for eNB
- can do attach
- can ping external servers
On odroid,
- builds correctly
- eNB fails to come up due to late samples (same as parent branch)
See merge request !31
2016-04-26 17:10:32 +02:00
Cedric Roux
42d9180532
add FORMAT to legacy logs
2016-04-26 16:34:15 +02:00
Navid Nikaein
2493ea4a3c
update the run_enb_ue_virt_s1 script to birng up oip interface automatically
2016-04-26 13:51:50 +02:00
Cedric Roux
ed71e94d1b
add size of message when forwarding (so the remote end can
...
skip unknown messages safely)
2016-04-26 13:39:41 +02:00
Cedric Roux
06cd5665eb
gui.c was forgotten in the previous commit
2016-04-26 12:26:39 +02:00
Chun-Yeow Yeoh
9eaa72d86b
UE: add PCO in PDN Connectivity Request message
...
Add the PCO so that MME allocates the IP address
accordingly. The protocol ID known as "IP address
allocation via NAS signalling" is assigned.
Otherwise, the OAI UE will always has IP address
set to 0.0.0.0
This has tested with OAI eNB with S1 interface using
OAI EPC.
Reference:
http://www.sharetechnote.com/html/Handbook_LTE_ProtocolConfigurationOption.html
This patch is merged with Cedric's patch and tested.
Signed-off-by: Chun-Yeow Yeoh <yeow@tmrnd.com.my >
Signed-off-by: Cedric Roux <Cedric.Roux@eurecom.fr >
2016-04-26 12:12:38 +02:00
Rohit Gupta
f723937aa1
Merge branch 'develop' into feature-44-dedicated-drb
2016-04-25 19:25:27 +02:00
Rohit Gupta
852775ac50
cherry pick commits from bugfix-48-L1L2signalling to develop
2016-04-25 19:24:54 +02:00
Xenofon Foukas
b9c9293144
Added support for multiple eNBs
2016-04-25 17:12:11 +01:00
Xenofon Foukas
07d30b2288
Fixed bug in the number of eNBs for the simulations
2016-04-25 17:11:27 +01:00
Xenofon Foukas
104ed9ade1
Added fixes for multiple eNBs and simulation mode
2016-04-25 17:09:53 +01:00
Cedric Roux
e7faea3553
split tracer in local/remote and some work on the new gui
2016-04-25 17:53:58 +02:00
Cedric Roux
4e88857b27
let the soft-modem (or the program being traced, whatever it is) try
...
to connect until it succeeds
2016-04-25 17:27:22 +02:00
ODROID
158177dc4e
added fixes to build on odroid/xu4 platform
2016-04-25 16:34:14 +09:30
Rohit Gupta
1d348874b0
Merge branch 'develop'
2016-04-22 19:07:53 +02:00
Rohit Gupta
d1775abe2a
minor bugfix for USRP init
2016-04-22 19:07:30 +02:00
Navid Nikaein
ace9df1da3
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-04-22 14:58:26 +02:00
Rohit Gupta
1bba2d9de7
remove bladeRF initialization due to DC
2016-04-22 12:37:40 +02:00
gauthier
f970f11967
removed warning when compiling for real-time
2016-04-22 08:37:12 +02:00
Raymond Knopp
d6c823d380
Merge branch 'bugfix-48-L1L2signaling' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
2016-04-21 22:29:17 -07:00
Raymond Knopp
ba020c807f
oaisim compilation error, ulsim 20 MHz segfault. ulsim tests.
2016-04-21 22:28:21 -07:00
Rohit Gupta
a4a5dbbc70
added master clock for 5MHz
2016-04-21 18:39:30 +02:00
Navid Nikaein
0ddf4208b0
disabling localization flag in RRC
2016-04-21 18:26:25 +02:00
Rohit Gupta
a0ffa8ca17
minor fix for installation of gnutls/nettle due to conflicts with openair-CN installation
2016-04-21 17:38:05 +02:00
Raymond Knopp
d54fe24f9e
acceleration of dlsch_modulation
2016-04-21 00:53:28 -07:00
Rohit Gupta
1266a970f3
Merge branch 'develop' into bugfix-48-L1L2signaling
2016-04-20 19:45:47 +02:00
Rohit Gupta
bb99c721bf
Merge branch 'feature-34-test_framework' into develop
2016-04-20 19:45:32 +02:00
Rohit Gupta
4c5fd68efd
resetting bladeRF
2016-04-20 18:00:42 +02:00
Rohit Gupta
abe0d39d3c
fix conflicts after merge from develop
2016-04-20 17:45:08 +02:00
Rohit Gupta
23efd459dd
Change the TX/RX BW for flat channel response
2016-04-20 16:34:59 +02:00
Rohit Gupta
9c14a20bd3
updates to USRP calibration + few modifications in config files
2016-04-20 15:17:22 +02:00
Xenofon Foukas
59ba6f9e7b
Made config changes for remote scheduler and eNB
2016-04-20 13:41:49 +01:00
Navid Nikaein
ffe1415ea7
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-04-20 13:14:36 +02:00
Navid Nikaein
65cf0940e0
Merge branch 'feature-44-dedicated-drb' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-04-20 13:14:20 +02:00
Navid Nikaein
4b8251838d
enabling SRB2
2016-04-20 13:14:16 +02:00
Florian Kaltenberger
66f494cbd7
Merge branch 'feature-59-tm4' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-59-tm4
2016-04-20 09:55:42 +02:00
Florian Kaltenberger
c4f8163246
DEBUG flag will not work for realtime mode
2016-04-20 09:54:31 +02:00
gauthier
10d6eccb9f
UL timing parameter for USRP B2x0, some adjustments in B2x0 configuration files for Band 7
2016-04-20 09:16:32 +02:00
Rohit Gupta
4fb09eebff
Disable lowlatency scheduler for EXMIMO
2016-04-19 18:54:58 +02:00
Rohit Gupta
bcbccfad93
change the default CPU Affinity configuration
2016-04-19 18:53:48 +02:00
Rohit Gupta
972749b3bc
updates to USRP timing after changing master clock
2016-04-19 18:52:51 +02:00
lukashov
cc9a5ede96
Introdducing dlsch_64qam_llr_SIC.
2016-04-19 18:21:42 +02:00
Florian Kaltenberger
5615a75413
fixing previous merge
2016-04-19 17:04:09 +02:00
Florian Kaltenberger
2b213a0ccc
Merge branch 'develop' into feature-59-tm4
...
Conflicts:
openair1/SIMULATION/LTE_PHY/dlsim.c
2016-04-19 15:50:05 +02:00
Florian Kaltenberger
41d973df1b
Merge branch 'feature-59-tm4' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-59-tm4
2016-04-19 15:46:04 +02:00
Florian Kaltenberger
b4d650e4f5
usrp_lib: setting master clock rate to 30.72 and filter to 20MHz for all cases to improve noise figure and channel response
2016-04-19 15:44:30 +02:00
gauthier
cac9ac4041
UHD interfacing (master clock 30.72, bandwidths on 5/10/20 @ 20 MHz), RX gain calibration back to normal.
2016-04-18 20:44:30 +02:00
lukashov
459913de55
changes are mostly related to:
...
1. Introducing dlsch_16qam_llr_SIC.
2. New writing files format in file_output.c
3. Some comments addded.
2016-04-18 20:08:54 +02:00
Xenofon Foukas
bcea7d5917
Fixed local scheduler bug when scheduling multiple UEs
2016-04-18 13:05:36 +01:00
Xenofon Foukas
bad4b7940a
Fixed bug when delegating control when delegated lib was previously NULL
2016-04-15 12:17:36 +01:00
Rohit Gupta
ccc6faf578
minor typo in build script (help section)
2016-04-15 10:31:14 +02:00
Xenofon Foukas
673ef5fa7a
Modified active harq reporting mechanism to support long schedule ahead of time values
2016-04-14 15:13:15 +01:00
Xenofon Foukas
d4fd08785d
Modified eNB conf file for USRP to use 50 rbs
2016-04-14 14:51:00 +01:00
Xenofon Foukas
345a9382f2
Fixed bug of local agent scheduler that did not allow the retransmission in HARQ processes
2016-04-14 14:50:22 +01:00
Raymond Knopp
2176299a2d
pdcchsim change for debugging CCE allocations
2016-04-14 00:40:50 -07:00
Rohit Gupta
d67e4f5eb4
updates to disable CPU Affinity
2016-04-13 12:42:55 +02:00
Rohit Gupta
41828d81bc
fixed the library linking from bin to cmake_current_binary_dir
2016-04-13 11:32:16 +02:00
Rohit Gupta
39f33013fe
Removal of dead code
2016-04-13 11:07:34 +02:00
Rohit Gupta
a5eb08b67b
Enable CPU Affnity for UE threads
2016-04-13 11:00:51 +02:00
Rohit Gupta
443d7a835a
Merge branch 'bugfix-48-L1L2signaling' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
2016-04-13 10:58:36 +02:00
Rohit Gupta
b9cf09b2f4
Disable CPU affinity for 2 CPUS + fix deadline scheduler
2016-04-13 10:58:33 +02:00
gauthier
2fbd85de22
calibration for 10 MHz timing (after master clock change)
2016-04-12 21:05:43 +02:00
Rohit Gupta
ea2f006742
copy UE Sim files to lte_build_dir/build
2016-04-12 16:18:15 +02:00
Xenofon Foukas
a47f3654f8
Added basic support for policy reconfiguration using yaml parser
2016-04-12 13:00:20 +01:00
Xenofon Foukas
dd2e208361
Added protocol support for agent policy reconfiguration
2016-04-12 12:56:55 +01:00
Xenofon Foukas
9c9d3f4580
Added build support for packages required for the agent-enabled eNB
2016-04-12 12:56:13 +01:00
Rohit Gupta
446e0c7503
Merge branch 'hotfix-106-usrp_rt_dc_offset' into bugfix-48-L1L2signaling
2016-04-12 12:54:53 +02:00
Rohit Gupta
6e5d7cdde7
disable CPU affinity for UE and also for case when MAX_CPUS <=2
2016-04-12 12:54:15 +02:00
gauthier
20e2460913
minor change in timing for 5 MHz on USRP B210
2016-04-12 12:38:19 +02:00
Florian Kaltenberger
663a5f44f5
Merge remote-tracking branch 'origin/develop' into feature-59-tm4
2016-04-12 12:38:17 +02:00
Cedric Roux
a1aa665841
flip vertically XY plot, it was plotted the other way around
2016-04-12 11:45:15 +02:00
Cedric Roux
71b5c59fd5
minor modification
2016-04-11 18:43:17 +02:00
Cedric Roux
8114422fc5
plot points in XY plot
2016-04-11 18:35:43 +02:00
Cedric Roux
98d2cf8b06
add X functions to plot points
2016-04-11 18:34:26 +02:00
Cedric Roux
062f7fad97
add clear function to the gui
2016-04-11 18:31:37 +02:00
Cedric Roux
3e33416517
fix container size allocation
2016-04-11 18:02:03 +02:00
Cedric Roux
078b4ab9b9
some minor modification again
2016-04-11 17:50:37 +02:00
Cedric Roux
4006af8290
minor modification
2016-04-11 17:40:28 +02:00
Cedric Roux
7e382d2f9a
minor modification
2016-04-11 17:39:16 +02:00
Cedric Roux
5a9401cd46
remove useless warning
2016-04-11 17:38:11 +02:00
Cedric Roux
2c4bc73155
clear newly created pixmap to avoid some flickering when resizing windows
2016-04-11 16:39:02 +02:00
Xenofon Foukas
5dbae26032
Merge branch 'feature-68-enb-agent' into agent-performance
2016-04-11 11:39:44 +01:00
Cedric Roux
066bac4a14
remove T_IDs.h from git - this file is generated when compiling
...
the T tracer (separate compilation for the moment)
2016-04-11 11:28:33 +02:00
Cedric Roux
0fb583a250
import the T tracer into openair
2016-04-11 11:21:52 +02:00
Cedric Roux
2bb04f0105
first version of the generic gui for the tracer
2016-04-11 11:18:26 +02:00
Cedric Roux
ee6789cdde
"make clean" cleans also the tracer
2016-04-11 10:23:15 +02:00
Cedric Roux
d37484b5aa
put code in the right place for integration into openair
2016-04-11 10:20:23 +02:00
Raymond Knopp
6ddc7b3bc9
Merge branch 'bugfix-48-L1L2signaling' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
...
Conflicts:
openair1/SCHED/phy_procedures_lte_eNb.c
2016-04-10 23:29:28 +02:00
Raymond Knopp
2dfe84a7e4
bugfixing for UL. Remaining problems: CCE allocations in subframe 5 lead to occasional illegal DCI allocations (affects UL DCI which is missed by UE). waveform compliance with CQI in ULSCH.
2016-04-10 23:25:58 +02:00
Cedric Roux
f9d740eee6
first commit of the T - review this commit, many things should
...
probably not be here.
2016-04-10 17:01:22 +02:00
Rohit Gupta
8aa61db4ba
CPU Affinity partitioninig between TX/RX threads when not using DEADLINE scheduler
2016-04-09 19:54:44 +02:00
Rohit Gupta
bdaedcd487
Merge from hotfix-106-usrp_rt_dc_offset
2016-04-09 19:13:55 +02:00
Rohit Gupta
00b26f36a0
minor fix for CPU Affinity support in lte-softmodem
2016-04-09 19:04:56 +02:00
Rohit Gupta
b1388b6957
file to free memory in test setup
2016-04-08 18:29:12 +02:00
Rohit Gupta
48885f1f41
Pin USRP threads to CPU 0, and all other CPUs are reserved for lte-softmodem
2016-04-07 16:39:23 +02:00
Rohit Gupta
31588ef6b3
USRP DC Offset fix (downgrade master clock for proper calibration)
2016-04-07 16:38:43 +02:00
Xenofon Foukas
6b15195ac5
Added statistics for total and missed scheduling deadlines of remote scheduler
2016-04-07 09:28:35 +01:00
Navid Nikaein
b5e3fa0521
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-44-dedicated-drb
2016-04-06 19:22:19 +02:00
Navid Nikaein
0a3a8a5daf
fix the dedicated DRB setup with multiple E_RAB_SETUP_REQ
2016-04-06 19:21:53 +02:00
Xenofon Foukas
60b7e425df
Merge remote-tracking branch 'origin/feature-68-enb-agent' into agent-performance
2016-04-06 13:35:06 +01:00
Xenofon Foukas
7236e3ca17
Bugfixes to improve stability
2016-04-06 13:34:37 +01:00
Rohit Gupta
c68fba3ff1
Merge branch 'develop'
2016-04-06 12:05:21 +02:00
Rohit Gupta
92b07c86da
Merge branch 'feature-34-test_framework' into develop
2016-04-06 12:04:56 +02:00
Rohit Gupta
87f7d2debd
minor typo in iperf script in test setup
2016-04-06 12:04:41 +02:00
Rohit Gupta
69493af0d6
Merge branch 'feature-34-test_framework' into develop
2016-04-06 12:03:32 +02:00
Rohit Gupta
0a524ef27e
Merge branch 'develop'
2016-04-06 11:27:29 +02:00
Raymond Knopp
15cd4ab077
cleanup for Mdlharq usage/meaning
2016-04-06 11:27:19 +02:00
Rohit Gupta
5d02341121
minor fix for iperf script for test setup
2016-04-06 11:26:42 +02:00
Xenofon Foukas
46b1280a5e
Merge remote-tracking branch 'oai/develop' into feature-68-enb-agent
2016-04-06 08:50:09 +01:00
Florian Kaltenberger
4a2e77ac56
fixing a bug related to harq rounds introduced in 6f889b30e4
2016-04-06 08:39:07 +02:00
Rohit Gupta
3728f37491
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-04-05 21:46:58 +02:00
Rohit Gupta
66dde65f2e
added a new check for illegal file permissions to mbmssim.c, to avoid a segfault if permissions are invalid.
2016-04-05 21:44:41 +02:00
Rohit Gupta
1810c6361e
Merge branch 'feature-34-test_framework' into develop
2016-04-05 18:57:16 +02:00
Rohit Gupta
632204bb10
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-04-05 17:17:01 +02:00
Rohit Gupta
ca5ff31f32
updates to eMBMS. mbmssim and UE channel estimation. will not affect current gitlab CI tests.
2016-04-05 16:37:32 +02:00
Rohit Gupta
80a3ccad92
Merge branch 'bugfix-51-mscgen' into 'develop'
...
Bugfix 51 mscgen
See merge request !29
2016-04-05 16:08:15 +02:00
Raymond Knopp
68fb9ef07f
modifications to eMBMS-related L1 processing. mbmssim now works again (performance to be checked for 10/20 MHz), but error rates decay as they should with SNR.
2016-04-04 16:29:06 -07:00
Rohit Gupta
4ff17e2b03
Fixed the rx gain setting of USRP
2016-04-04 16:52:14 +02:00
Rohit Gupta
5481e609ef
minor fix for serial port detection
2016-04-04 15:35:31 +02:00
Navid Nikaein
b8181d06f1
merge with the develop
2016-04-04 14:47:46 +02:00
Rohit Gupta
691cdca257
add license to autotest files
2016-04-04 14:29:29 +02:00
Rohit Gupta
a6d1aa8dff
Merge branch 'develop' into feature-34-test_framework
2016-04-04 14:21:35 +02:00
Rohit Gupta
8b849e5c30
minor fixes to throughput tests in Gitlab CI
2016-04-04 14:20:53 +02:00
Rohit Gupta
8cfe28f6d7
minor fix to reset the modem if serial ports not found
2016-04-04 13:15:24 +02:00
Navid Nikaein
9eec54ae8f
check if /proc/cpuinfo file exist in CMakeLists.txt
2016-04-04 12:56:31 +02:00
Rohit Gupta
b48c64d461
fixes to free memory in test setup
2016-04-04 12:34:16 +02:00
Xenofon Foukas
224ec7c4a1
Merge remote-tracking branch 'origin/develop' into agent-performance
2016-04-04 10:49:35 +01:00
Xenofon Foukas
abcdd194ff
Merge remote-tracking branch 'origin/develop' into feature-68-enb-agent
2016-04-04 10:49:02 +01:00
Xenofon Foukas
f545a225a4
Merge remote-tracking branch 'oai/develop' into develop
2016-04-04 10:48:14 +01:00
Raymond Knopp
ce454d646f
unitary simulations after ./build_oai -s
2016-04-02 18:24:33 +02:00
Raymond Knopp
9e312bfc6f
Merge branch 'bugfix-48-L1L2signaling' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
2016-04-02 12:22:48 +02:00
Raymond Knopp
944720d26d
8bit LLR on ULSCH decoding
2016-04-02 12:22:27 +02:00
Rohit Gupta
08c688dc6d
blacklisting 20MHz test cases on EXMIMO in test setup
2016-04-01 18:38:57 +02:00
Rohit Gupta
85bb9813a2
addition of Sony Experia M4 tests in xml file
2016-04-01 18:36:24 +02:00
Raymond Knopp
b511419090
resolved residual warnings after merge with develop (no warnings again for lte-softmodem)
2016-04-01 09:17:37 -07:00
Rohit Gupta
387edbdf19
minor fixes to test scripts for Sony Experia
2016-04-01 17:46:01 +02:00
Rohit Gupta
3471c652d6
minor bugfix for iperf script
2016-04-01 17:39:37 +02:00
Rohit Gupta
058aa8a28c
updates for adding Sony Experia M4 to test setup
2016-04-01 17:18:55 +02:00
Rohit Gupta
71f9a71a98
autotest scripts for Sony Experia M4
2016-04-01 16:54:29 +02:00
Raymond Knopp
e71aebc603
Merge remote-tracking branch 'origin/develop' into bugfix-48-L1L2signaling
...
Conflicts:
openair1/PHY/LTE_ESTIMATION/lte_eNB_measurements.c
openair1/PHY/LTE_TRANSPORT/dlsch_coding.c
openair1/SCHED/phy_procedures_lte_eNb.c
openair2/LAYER2/MAC/config.c
openair2/LAYER2/MAC/pre_processor.c
openair2/LAYER2/openair2_proc.c
openair2/RRC/LITE/rrc_eNB.c
openair3/NAS/UE/API/USIM/usim_api.c
openair3/NAS/UE/ESM/esm_ebr_context.c
2016-03-31 14:36:12 -07:00
Rohit Gupta
422f300808
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-51-mscgen
2016-03-31 20:02:02 +02:00
Rohit Gupta
af98ae8c35
addition of Sony Experia M4 Phone tests
2016-03-31 20:01:47 +02:00
Florian Kaltenberger
3d0ad079b1
fix for kernel 4.2
2016-03-31 16:12:24 +02:00
Rohit Gupta
d161c027b3
Merge branch 'develop' into feature-34-test_framework
2016-03-31 16:07:54 +02:00
Cedric Roux
fc16814d94
Merge branch 'remove-warnings' into 'develop'
...
Remove warnings
See merge request !27
2016-03-31 16:07:23 +02:00
Xenofon Foukas
985a2ec261
Merge remote-tracking branch 'oai/develop' into feature-68-enb-agent
2016-03-31 11:08:02 +01:00
Florian Kaltenberger
f5c798e48c
transmission mode is now taken into account in RRC signalling
...
small bugfix in dlsch_demodulation
shunted out TM3-7 specific DCI generation in scheduler to enable basic operation. more work needed.
2016-03-31 11:34:32 +02:00
Navid Nikaein
15d5095914
fix a compilation error
2016-03-30 15:22:14 +02:00
Navid Nikaein
b65065fa68
merge with the develop
2016-03-30 12:25:56 +02:00
Navid Nikaein
ba735d181f
improve the S1AP e_rab setup messages
2016-03-30 09:45:40 +02:00
Rohit Gupta
28b7395520
Merge branch 'develop' into bugfix-51-mscgen
2016-03-29 18:52:20 +02:00
Cedric Roux
600cce17c7
more warning removals
2016-03-29 12:00:57 +02:00
Cedric Roux
87d1424762
more warning removals
2016-03-29 11:50:29 +02:00
Cedric Roux
5f823b401a
some more warning removals
2016-03-28 22:45:20 +02:00
Cedric Roux
f514c0656d
more warning removals: add const to asn1cpatch_3.p0 and update fix_asn1
2016-03-27 16:51:16 +02:00
Cedric Roux
20b6fee632
remove more warnings
2016-03-27 13:36:37 +02:00
Raymond Knopp
1d3ce6d99c
Merge branch 'cleanup' into bugfix-48-L1L2signaling
...
Conflicts:
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
targets/ARCH/COMMON/common_lib.c
2016-03-27 03:09:22 -07:00
Raymond Knopp
aab91dd0d4
removal of MAC_INTERFACE directory and its consequences
2016-03-27 02:50:47 -07:00
Cedric Roux
2cea2dbed9
get rid of "const" warnings in nas_message.c
2016-03-26 23:25:30 +01:00
Cedric Roux
ce0adf779b
declare struct rrc_rnti_tree_s before RB_PROTOTYPE
2016-03-26 23:14:55 +01:00
Cedric Roux
544da9f598
remove warnings from rt_wrapper.c
2016-03-26 22:57:45 +01:00
Cedric Roux
77363df00b
remove #warning lines (comment them out)
2016-03-26 22:52:19 +01:00
Cedric Roux
04eed3bd6e
remove "unused variable" and "set but not used" warnings
2016-03-25 23:58:58 +01:00
Cedric Roux
3f8c74caba
avoid duplicate #define
2016-03-25 22:26:40 +01:00
Cedric Roux
a56b0a1f70
clean liblfds (comment #pragma lines)
2016-03-25 22:14:54 +01:00
Rohit Gupta
8028652a71
hotfix for enb/EPC local config file
2016-03-25 20:08:04 +01:00
Cedric Roux
460a1f2b8d
Merge branch 'bugfix-95-asn1c_warnings_removal' into 'develop'
...
Bugfix 95 asn1c warnings removal
See merge request !26
2016-03-25 18:52:22 +01:00
Xiwen JIANG
3c7f2ff3ce
fill dci for TM7
2016-03-25 09:19:34 +01:00
gauthier
81f5d25e65
changed some PUSCH/PUCCH parameters in configuration file.
2016-03-25 08:49:20 +01:00
Raymond Knopp
0057448b91
removed unused MAC_INTERFACE directory
2016-03-24 10:45:52 -07:00
lukashov
5416a6f8d7
Merge branch 'develop' into feature-59-tm4
2016-03-24 09:55:50 +01:00
lukashov
25796d27a1
Fixing the way bler is computed for SIC receiver
2016-03-24 09:52:34 +01:00
Cedric Roux
5885eadfcb
Merge branch 'hotfix-i2-galaxy-note-4' into 'develop'
...
fix size checks of CCCH
it was at the wrong place
it was also wrong (< instead of <=)
See merge request !25
2016-03-24 09:37:37 +01:00
gauthier
f48fff45a0
Merge branch 'bugfix-48-L1L2signaling' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
2016-03-23 21:19:02 +01:00
gauthier
f79b0e7d9b
added hotfix for DCCH bad size limitation (to be checked after merge with develop). Changed UL idle scheduling to improve 5MHz performance, changed DCI aggregation for ue-specific DCIs (reduces contention with SI and RA in subframe 5 for 5 MHz). Added RRC timer for UE release which cleans L1. Still issues in 10 MHz throughput with TCP. 5 MHz seems almost fine.
2016-03-23 21:15:49 +01:00
Cedric Roux
ffd02335a4
fixes to take into account new asn1 patch
2016-03-23 16:49:17 +01:00
Cedric Roux
0d7e510d29
fix size checks of CCCH
...
it was at the wrong place
it was also wrong (< instead of <=)
2016-03-23 16:00:22 +01:00
Xenofon Foukas
a226423258
Merge remote-tracking branch 'oai/develop' into agent-performance
2016-03-22 17:18:33 +02:00
Xenofon Foukas
891cd96638
Merge remote-tracking branch 'oai/develop' into feature-68-enb-agent
2016-03-22 17:15:54 +02:00
Xenofon Foukas
f97edfd04d
Merge remote-tracking branch 'oai/develop' into develop
2016-03-22 17:04:26 +02:00
Navid Nikaein
0f8c20f2f5
merge with develop
2016-03-22 11:51:31 +01:00
Florian Kaltenberger
21680ffb52
Merge branch 'improved-common-lib' into 'develop'
...
Improved common lib
See merge request !24
2016-03-22 11:39:54 +01:00
Raymond Knopp
fab3ed7317
Merge branch 'bugfix-48-L1L2signaling' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
2016-03-22 03:09:21 -07:00
Raymond Knopp
17f29b776f
tracing in unitary simulations (ulsim/prachsim)
2016-03-22 03:07:20 -07:00
Cedric Roux
9b0f4913e2
dirty bug...
2016-03-21 17:42:04 +01:00
Xiwen JIANG
42ffffd902
Merge branch 'develop' into feature-21-TM7
2016-03-21 17:26:07 +01:00
Xiwen JIANG
9fcca73f53
lte softmodem adaption for massive antennas (not complete)
2016-03-21 16:55:26 +01:00
Xiwen JIANG
9fca33136d
move symbol level ifft including beamforming into ofdm_mod.c
2016-03-21 16:53:35 +01:00
Xiwen JIANG
e196f5fcfb
bug fixed in beamforming.c
2016-03-21 16:52:03 +01:00
Cedric Roux
0fe08538e9
add __synch_synchronize for the T_cache
...
it probably makes things zillion times slower but it seems to be necessary
2016-03-21 16:44:12 +01:00
Cedric Roux
7c7d5caed2
do not forward data from tracee to remote tracer - no data is sent
...
and it won't work anyway, it will mess up with the T
2016-03-21 16:42:24 +01:00
lukashov
978a7a627e
Merge branch 'develop' into feature-59-tm4
...
Conflicts:
openair1/PHY/TOOLS/lte_phy_scope.c
2016-03-21 15:31:19 +01:00
lukashov
6eea200c35
in dlsim ret, aver_iter, iter_trials are now arrays to be used for 2 cw independently;
...
+ small bug fix in dlsim related to sic cw.
2016-03-21 15:21:09 +01:00
Rohit Gupta
28dae90984
fix for excluding tests listed in xml file
2016-03-21 11:29:02 +01:00
Rohit Gupta
ff706ab0a4
Merge branch 'feature-34-test_framework' into develop
2016-03-21 10:42:51 +01:00
Rohit Gupta
3a419bd4ea
minor fix for Gitlab CI logging
2016-03-21 10:42:28 +01:00
Rohit Gupta
febd5cb250
Merge commit 'c031cfe' into feature-34-test_framework
2016-03-21 10:29:42 +01:00
Rohit Gupta
c031cfe84e
minor fix for bug in Gitlab CI for checking out code
2016-03-21 10:28:37 +01:00
Cedric Roux
fe057b1bc4
add port to -r option
2016-03-21 09:54:23 +01:00
Raymond Knopp
b1e28edd63
Merge branch 'enhancement-43-AVX2' into bugfix-48-L1L2signaling
...
corrected some additional FFT related issues from AVX2 merge when running with real-time MODEM.
Conflicts:
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
2016-03-20 23:37:06 +01:00
Raymond Knopp
801e343c24
minor change on commented code
2016-03-20 22:27:00 +01:00
Cedric Roux
1b08d451c4
Merge remote-tracking branch 'oai/develop' into bugfix-95-asn1c_warnings_removal
2016-03-20 22:17:51 +01:00
Raymond Knopp
c0f6881c15
fixes after merge
2016-03-20 22:07:17 +01:00
Raymond Knopp
1d7728b4d8
Merge remote-tracking branch 'origin/develop' into enhancement-43-AVX2
...
Conflicts:
cmake_targets/CMakeLists.txt
openair1/PHY/MODULATION/ofdm_mod.c
openair1/PHY/TOOLS/lte_dfts.c
2016-03-20 21:46:13 +01:00
Cedric Roux
d4d361ed2f
error if -on/-off id/group is not found
2016-03-20 21:30:07 +01:00
Raymond Knopp
bed47a441d
activated 8-bit LLR decoding for DLSCH. added gtkw configuration for UE usrp.
2016-03-20 21:24:38 +01:00
Cedric Roux
f846a9e564
forwarder uses a list to store messages
...
better in case of slow link between local and remote tracers
may smoke lots of memory though
2016-03-20 21:22:56 +01:00
Cedric Roux
8ca955f371
better forwarder
2016-03-20 19:44:57 +01:00
Cedric Roux
cb2454cca3
first version of forwarder
...
to be redone (the local tracer shall not configure the tracee by
itself but only forward what the remote tracer sends)
2016-03-20 00:23:15 +01:00
Cedric Roux
ee5d8c60fb
prepare forwarder
2016-03-19 23:52:09 +01:00
Cedric Roux
2bd870afdc
- read may return partial content from a socket, deal with that
2016-03-19 22:40:20 +01:00
Cedric Roux
ef289848ab
- add OIP traces - oaisim generates one of it at the end
2016-03-19 19:09:12 +01:00
Cedric Roux
e11728a83b
- make it work with oaisim
...
- add global ON/OFF command line options (OFF is useless but just for
completeness)
2016-03-19 19:06:01 +01:00
Xenofon Foukas
aa50fcf02a
Fixed HARQ reporting to agent and changed sf trigger to report the upcoming subframe
2016-03-18 19:42:38 +00:00
Xenofon Foukas
7481959647
Added agent config file for band7 usrbb210
2016-03-18 19:38:55 +00:00
Cedric Roux
9e08370762
add pucch energy plot
2016-03-18 19:05:16 +01:00
Cedric Roux
26a5da6cef
bugfix
...
yes you need this xflush before sleeping into select...
2016-03-18 15:13:21 +01:00
Cedric Roux
b168a283a6
prepare code to handle more than one plot per plot
...
- array of plots
- deal with colors
2016-03-18 15:12:11 +01:00
Rohit Gupta
e7852a6fdd
Merge branch 'feature-34-test_framework' into develop
2016-03-18 14:34:25 +01:00
Florian Kaltenberger
56d0f9a2ea
adding -fPIC to compile options in LMSSDR libraries
2016-03-18 12:23:40 +01:00
Cedric Roux
fa49fe6780
- add PUSCH/PUCCH plots
...
- update X events management
- lock to protect data while plotting (may become a problem in the future)
- better naming of dimensions
this commit should be cut in small pieces
bah
2016-03-18 12:11:42 +01:00
Cedric Roux
2d10951a2e
introduce T_TRACER to globally enable/disable the T
2016-03-18 12:10:49 +01:00
lukashov
291a7f1752
1. Changing precoder to minimize interference: testing simple channels.
...
2. Fixing confusion between dl_ch_rho2_ext and dl_ch_rho_ext[harq_pid][round].
2016-03-18 12:00:49 +01:00
Florian Kaltenberger
606e51f832
improved error handling in common lib
2016-03-18 10:23:12 +01:00
Raymond Knopp
b441c37b40
added Timing advance tracing to .vcd output. Increase maximum UL RB count to 45. Measured UL throughput @ 15 Mbit/s (40 PRBs).
2016-03-18 08:00:51 +01:00
Rohit Gupta
1db6299616
change to exclusion test case list
2016-03-17 19:35:45 +01:00
Raymond Knopp
84a1c7377b
Merge remote-tracking branch 'origin/develop' into bugfix-48-L1L2signaling
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/print_stats.c
openair1/SCHED/phy_procedures_lte_eNb.c
openair1/SCHED/phy_procedures_lte_ue.c
targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.band7.tm1.rrh.usrpb210.conf
targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.band7.tm1.usrpb210.conf
2016-03-17 17:47:16 +01:00
Xiwen JIANG
06c4b91b61
move beamforming function to PHY/MODULATION folder
2016-03-17 10:28:06 +01:00
lukashov
127fa9ae37
Fixing bug in modulation_SIC: initially setting re_allocated to 0.
2016-03-16 18:10:07 +01:00
Cedric Roux
9f0789e0d0
- add groups in T_messages.txt
...
- minor fix
2016-03-16 17:41:16 +01:00
Rohit Gupta
16b0ec393e
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-03-16 17:26:40 +01:00
Rohit Gupta
3e700fce03
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-34-test_framework
2016-03-16 17:26:11 +01:00
Rohit Gupta
e1037f1a94
Merge branch 'develop' into feature-34-test_framework
2016-03-16 17:25:31 +01:00
Rohit Gupta
b98dd4640f
Merge branch 'feature-38-bladerf' into develop
2016-03-16 17:25:13 +01:00
Rohit Gupta
4eed6a1a47
fix for segmentation fault in BaldeRF
2016-03-16 17:24:50 +01:00
Rohit Gupta
7aefb248f9
Merge branch 'develop' into feature-38-bladerf
2016-03-16 17:22:25 +01:00
Rohit Gupta
1459ca1237
remove testcases from exclusion which are working
2016-03-16 17:17:52 +01:00
Cedric Roux
f18d59c95a
- add channel estimation plot
...
- add on/off command line options
2016-03-16 16:26:53 +01:00
Rohit Gupta
4f9b32aa2b
updates for OAI EPC Local test cases
2016-03-16 16:12:30 +01:00
lukashov
4573c0b962
Changes for SIC-receiver:
...
1. in dlsim.c: now we check for the receiver type and, if SIC, proceed through encoding, modulation, LLR compuattion and decoding
of the decoded TB0.
2. Implementing routines for vector-vector multiplication and vector-vector subtraction
3. Adding some printouts for debuging purposes.
4. New functions: modulation_SIC, dlsch_qpsk_llr_SIC
5. In phy_scope.c: changing llr plotting: now for the length of coded_bits_per_cw.
2016-03-16 16:05:09 +01:00
Florian Kaltenberger
81d7cdcf7a
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-03-16 15:52:04 +01:00
Florian Kaltenberger
ede2d8e672
small bug in scope
2016-03-16 15:51:42 +01:00
Cedric Roux
91d8c8920b
Modifications to test system to download from the right repository
...
when doing a merge request from oai-internal to oai.
2016-03-16 15:10:06 +01:00
Xenofon Foukas
7ab320d923
Prevent timing advance update to be sent without payload
2016-03-16 13:40:46 +00:00
Rohit Gupta
21e50bc840
Merge branch 'feature-34-test_framework' into develop
2016-03-16 14:13:00 +01:00
Rohit Gupta
b2bbd720a6
syntax fix for test setup xml file
2016-03-16 14:12:29 +01:00
Xenofon Foukas
c77fb6479e
Changed timing of continuous MAC statistics to be reported at the end of the subframe
2016-03-16 11:49:07 +00:00
Xenofon Foukas
ef22a539aa
Added more checks when applying dci decisions in the dataplane, to reduce RLC request misses
2016-03-16 11:48:18 +00:00
Rohit Gupta
138380e97a
minor fix for Gitlab CI stability
2016-03-16 12:21:10 +01:00
Rohit Gupta
9b82047c43
minor fix for Gitlab CI stability
2016-03-16 12:18:50 +01:00
Rohit Gupta
76844a41f0
removed unused log directories
2016-03-16 12:14:03 +01:00
Rohit Gupta
2f26bb0e53
removed unused log directories
2016-03-16 12:11:57 +01:00
Rohit Gupta
3196563702
Merge branch 'develop' into feature-34-test_framework
2016-03-16 12:09:31 +01:00
Rohit Gupta
c4cb8f474e
Merge branch 'Feature-6-fix_test_core_network_with_scenarios' into develop
2016-03-16 12:07:23 +01:00
Rohit Gupta
debe652b71
Merge branch 'feature-34-test_framework' into develop
2016-03-16 12:07:03 +01:00
Rohit Gupta
ef6f2e2a17
minor stability fixes for Gitlab test setup
2016-03-16 12:06:42 +01:00
Cedric Roux
1f4f030581
more work on database
2016-03-16 11:00:39 +01:00
Florian Kaltenberger
e60f1397c9
Merge remote-tracking branch 'origin/develop'
...
Conflicts:
openair1/SCHED/phy_procedures_lte_ue.c
2016-03-15 21:15:34 +01:00
Rohit Gupta
667a4987f9
Merge branch 'develop' into Feature-6-fix_test_core_network_with_scenarios
2016-03-15 19:10:34 +01:00
Rohit Gupta
473523558f
Merge branch 'feature-34-test_framework' into develop
2016-03-15 19:08:33 +01:00
Rohit Gupta
665b33ce5b
minor fix in RRH testcase 017504
2016-03-15 19:08:17 +01:00
Rohit Gupta
e3a7edb0a2
RRH Tests for USRP b210
2016-03-15 18:47:36 +01:00
Cedric Roux
fe808cc3b4
add a database of groups to, well, group IDs
2016-03-15 18:45:51 +01:00
Cedric Roux
75b827f846
don't accept spaces at end of lines in the messages' file
2016-03-15 18:44:00 +01:00
Xenofon Foukas
c2971d5176
Added tcp_nodelay option in agent async interface
2016-03-15 17:25:44 +00:00
gauthier
26f5d0d93d
more changes to uplink scheduling and vcd logging
2016-03-15 17:41:06 +01:00
Cedric Roux
6fa2737027
add a plotter for raw IQ samples from eNB uplink received data
...
only works for 5MHz (7680 samples per TTI), one transport block
(basic FDD thing)
2016-03-15 17:01:05 +01:00
Rohit Gupta
ffca489e03
Merge branch 'develop' into feature-34-test_framework
2016-03-15 16:14:44 +01:00
gauthier
85ea6023e2
Merge branch 'Feature-6-fix_test_core_network_with_scenarios' of gitlab.eurecom.fr:oai/openairinterface5g into Feature-6-fix_test_core_network_with_scenarios
2016-03-15 13:44:19 +01:00
gauthier
902f70ae5e
Remove some traces in
2016-03-15 13:41:09 +01:00
Rohit Gupta
7c016904d1
add sudo to deleting asn1 tmp dir
2016-03-15 10:50:45 +01:00
Cedric Roux
4b68033b2d
some work for buffer handling
2016-03-15 10:43:10 +01:00
Cedric Roux
1e20abdd9e
Initial commit of the T!
2016-03-14 18:02:12 +01:00
Xenofon Foukas
43b63be53a
Added nb_rb and oldNDI in template to be used for retransmissions
2016-03-14 11:42:04 +00:00
Raymond Knopp
d9e40977ed
changes to VCD logging for UL debugging
2016-03-13 22:58:00 +01:00
gauthier
a33d8050cf
more logging for CSABA
2016-03-11 17:16:49 +01:00
gauthier
9915db7397
extra logging for debugging (with Csaba Sipos)
2016-03-11 14:47:13 +01:00
trilyrak
9185c693bc
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-03-10 15:47:26 +01:00
trilyrak
85d010d987
update run_enb_s1_usrp script
2016-03-10 15:47:04 +01:00
Xenofon Foukas
1b972a5537
Merge remote-tracking branch 'remotes/oai/develop' into feature-68-enb-agent
2016-03-10 14:41:50 +00:00
Xenofon Foukas
c844f0aa25
Merge remote-tracking branch 'remotes/oai/develop' into develop
2016-03-10 14:39:32 +00:00
Xenofon Foukas
3251cf792c
Added shared libs for control delegation
2016-03-10 14:12:47 +00:00
Cedric Roux
ccba789274
Merge remote-tracking branch 'oai/develop' into bugfix-95-asn1c_warnings_removal
2016-03-10 12:11:23 +01:00
Xenofon Foukas
e88c4d97cf
Code cleanups for control delegation and API
2016-03-10 10:57:44 +00:00
Florian Kaltenberger
c7828888ab
small fix
2016-03-09 20:36:06 +01:00
Florian Kaltenberger
160f5e0786
Merge remote-tracking branch 'origin/develop' into feature-59-tm4
...
Conflicts:
openair1/SIMULATION/LTE_PHY/dlsim.c
2016-03-09 20:35:57 +01:00
Florian Kaltenberger
83f4f69faa
Merge branch 'enhancement-64-phy_test' into 'develop'
...
Enhancement 64 phy test
this branch (re)-introduces functionality that allows to run the eNB as a signal generator and the UE as a vector signal analyzer (old OPENAIR2=0).
Tests mostly pass (as good as before).
See merge request !18
2016-03-09 17:55:38 +01:00
trilyrak
78b109c943
update the run_enb_s1_usrp script
2016-03-09 16:47:37 +01:00
Xenofon Foukas
3a1f3df882
Added OAI priority to send and receive thread of agent
2016-03-09 13:13:03 +00:00
trilyrak
d3e7b6cd24
update the --rf-config-file option
2016-03-09 13:32:47 +01:00
Xenofon Foukas
34db5f2003
Moved agent async interface to lock-free implementation using lock-free ringbuffer
2016-03-09 12:19:16 +00:00
Florian Kaltenberger
3b4a5f25ec
Merge remote-tracking branch 'origin/develop' into enhancement-64-phy_test
...
Conflicts:
openair1/SCHED/phy_procedures_lte_ue.c
targets/SIMU/USER/oaisim_functions.c
2016-03-09 09:08:00 +01:00
Florian Kaltenberger
61203648b9
Merge branch 'enhancement-64-phy_test' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-64-phy_test
2016-03-09 08:59:09 +01:00
Florian Kaltenberger
4fe3e49faa
fixing last merge
2016-03-09 08:58:45 +01:00
Florian Kaltenberger
46fb7bb342
Merge branch 'hotfix-81-oaisim-2' into 'develop'
...
Hotfix 81 oaisim 2
this branch fixes a few issues mainly with the oaisim testcases
- improved gain control for oaisim
- updated testcase list options for oaisim
- XFORMS now command line options for oaisim and unitary sims
- build script improvements for sudo; HW=None and XFORMS=1 now default
- fixed SNR calculation in abstraction mode
See merge request !15
2016-03-09 08:55:01 +01:00
Mohamed Kassem
8b28344448
Temporary fix for bug in reporting number of initial pdcch symbols of cell and band5 configuration file for agent
2016-03-08 18:15:52 +00:00
Florian Kaltenberger
4aa6d96999
adding support for TM4 in phy-test mode
2016-03-08 17:15:24 +01:00
Florian Kaltenberger
eeafacd8b3
fixing previous merge
2016-03-08 17:15:05 +01:00
Florian Kaltenberger
0a8a6c44a5
Merge branch 'develop' into enhancement-64-phy_test
...
Conflicts:
openair1/SCHED/phy_procedures_lte_ue.c
targets/RT/USER/lte-softmodem.c
2016-03-08 15:36:32 +01:00
Xenofon Foukas
ff5b585446
Added check for ignoring empty mac dl config messages
2016-03-08 12:58:44 +00:00
Florian Kaltenberger
ae32ec2762
excluding some testcases to speed up testing
2016-03-08 12:02:32 +01:00
Florian Kaltenberger
049e33ca54
fixing a bug in computation of SINR in abstraction mode and making it dependent in NB_RB
2016-03-08 11:36:21 +01:00
Raymond Knopp
bd235ec7b2
modified lmssdr configuration files
2016-03-08 11:22:14 +01:00
Raymond Knopp
9d028e6a26
added low-band RX calibration files for SoDeRa.
2016-03-08 10:52:33 +01:00
Florian Kaltenberger
2d368cc2a5
Merge remote-tracking branch 'origin/develop' into hotfix-81-oaisim-2
2016-03-08 09:47:57 +01:00
Raymond Knopp
b37e234ecc
added CQI request timer. CQI only requested periodically. MCS20 on UL works now.
2016-03-07 21:59:30 +01:00
Xenofon Foukas
2a5a389f7d
Improved stability and eNB goodput of remote scheduling
2016-03-07 16:27:32 +00:00
Xenofon Foukas
0dc76931c6
Fixed bug in HARQ status reporting
2016-03-07 12:37:46 +00:00
Xenofon Foukas
fc569650ce
Fixed problem with sfn_sf recoding in remote scheduler
2016-03-07 10:02:40 +00:00
Raymond Knopp
c48f074aae
changes in BSR handling in eNodeB. UL throughput on 5 MHz is 8 Mbit/s (mcs 19, 20 PRB). MCS 20 is not working for an unknown reason.
2016-03-06 23:57:42 +01:00
Florian Kaltenberger
8b1d2836b7
fixing compilation of mbmssim
2016-03-05 21:14:00 +01:00
lukashov
cd17018ec7
Merge branch 'develop' into feature-59-tm4
2016-03-05 19:47:49 +01:00
Rohit Gupta
3b95019b64
Merge branch 'develop' into Feature-6-fix_test_core_network_with_scenarios
2016-03-04 18:13:12 +01:00
Rohit Gupta
5191cd9569
Merge branch 'feature-34-test_framework' into develop
2016-03-04 16:47:52 +01:00
Rohit Gupta
95e43d4ba3
exit on setup error and disable USRP/BladeRF driver installation
2016-03-04 16:47:28 +01:00
Xenofon Foukas
26bdf50109
Added bugfixes for remote scheduling
2016-03-04 15:46:31 +00:00
Xenofon Foukas
93b7cf05e8
Fixed linking error with creation of empty dl_mac_config
2016-03-04 10:54:11 +00:00
Xenofon Foukas
06b55e3fba
Fixed bug in creation of ul_cqi_report
2016-03-04 10:19:34 +00:00
Xenofon Foukas
47d3d77322
Added updates in the dataplane based on dl_mac_config message
2016-03-04 10:04:29 +00:00
lukashov
cdbc4baa58
Fixing rho for qpsk_qpsk in demodulation.c
...
Still need to caliibrate shifts -J.
2016-03-03 23:00:12 +01:00
Xenofon Foukas
d24f532396
Fixed bug in de-allocation of p0_pucch report
2016-03-03 19:49:51 +00:00
Florian Kaltenberger
87968cf1d4
Merge remote-tracking branch 'origin/feature-34-test_framework' into hotfix-81-oaisim-2
...
Conflicts:
cmake_targets/autotests/test_case_list.xml
2016-03-03 19:55:33 +01:00
Xenofon Foukas
d153208fc0
Added p0_PUCCH support in the agent
2016-03-03 17:39:10 +00:00
Cedric Roux
b557ccfded
Merge remote-tracking branch 'oai/develop' into bugfix-95-asn1c_warnings_removal
2016-03-03 17:34:16 +01:00
lukashov
20cc8bc9f6
Fixing FDD for TM4
2016-03-03 16:35:50 +01:00
Xenofon Foukas
a576127c49
Added temporary values in protocol for PUCCH power control
2016-03-03 15:17:19 +00:00
Xenofon Foukas
ad74bb0247
Fixed enums issue and update time advance API function
2016-03-03 15:05:54 +00:00
Rohit Gupta
820d00196f
Merge branch 'feature-34-test_framework' into Feature-6-fix_test_core_network_with_scenarios
2016-03-03 12:25:30 +01:00
Rohit Gupta
a05cdce1c8
Merge branch 'feature-34-test_framework' into develop
2016-03-03 12:25:18 +01:00
Rohit Gupta
58fa110a0b
installer support in Gitlab CI
2016-03-03 12:25:00 +01:00
Rohit Gupta
d33d2f5ed5
install libxslt
2016-03-03 10:41:49 +01:00
Raymond Knopp
cd8ccd8084
Merge branch 'bugfix-48-L1L2signaling' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
2016-03-02 21:08:57 +01:00
Aikaterini
8f0ac37eda
modifications in UE NAS to allow OAI UE to connect to. Note this is hard-coded in NAS, it will no longer work with openairCN. To be fixed before merging into develop branch
...
.
2016-03-02 20:58:20 +01:00
Rohit Gupta
6c2115620a
Merge branch 'develop' into Feature-6-fix_test_core_network_with_scenarios
2016-03-02 19:55:22 +01:00
Rohit Gupta
0c8d4323cf
Merge branch 'feature-34-test_framework' into develop
2016-03-02 19:54:37 +01:00
Rohit Gupta
24d24f121c
addition of RRH test cases
2016-03-02 19:54:05 +01:00
Rohit Gupta
574f3138d9
added support for rrh_gw config parsing
2016-03-02 18:23:08 +01:00
Rohit Gupta
eacc1c2a71
addition of SoDeRa test cases
2016-03-02 16:31:16 +01:00
lukashov
1843ef7928
Merge branch 'develop' into feature-59-tm4
...
Conflicts:
openair1/PHY/TOOLS/lte_phy_scope.c
openair1/SIMULATION/LTE_PHY/dlsim.c
2016-03-02 16:19:19 +01:00
Rohit Gupta
3001bac0e9
Change xml file after N/W reconfiguration
2016-03-02 16:12:14 +01:00
Rohit Gupta
695903920f
no GUI/History for stop_exmimo2 script
2016-03-02 13:45:26 +01:00
Rohit Gupta
b52aa55348
updates due to N/W configuration in test setup
2016-03-02 11:14:43 +01:00
Rohit Gupta
db954f189a
Merge branch 'develop' into feature-34-test_framework
2016-03-02 11:13:33 +01:00
lukashov
c1f4953008
Fixing new modulation tables for TM4 and TM6. Now all modulation orders and combinations work and the maginutes are at appropriate level.
2016-03-02 11:02:05 +01:00
gauthier
a89620bdb8
Merge branch 'develop' into Feature-6-fix_test_core_network_with_scenarios
2016-03-01 22:55:50 +01:00
gauthier
0c017f6922
Added delay on exit option
2016-03-01 22:53:47 +01:00
Florian Kaltenberger
9ccc1999bf
removing old unused files
2016-03-01 16:55:25 +01:00
Florian Kaltenberger
86ab3939ab
xforms now command line option for ulsim and dlsim
...
fixed mbmssim compilation issue
one more fix for build script sudo usage
2016-03-01 16:36:42 +01:00
Xiwen JIANG
71b7693429
change back 'p' and 'q' options for dlsim
2016-03-01 15:41:07 +01:00
Xiwen JIANG
bbd125a778
bug fixed for ULSIM
2016-03-01 15:40:43 +01:00
Florian Kaltenberger
8f9b55d79c
fix for sudo usage in autotests
2016-03-01 15:40:01 +01:00
Florian Kaltenberger
0b58a7e86e
Merge branch 'develop' into hotfix-81-oaisim
...
Conflicts:
cmake_targets/build_oai
openair1/PHY/LTE_TRANSPORT/initial_sync.c
openair1/SCHED/phy_procedures_lte_ue.c
2016-03-01 15:20:24 +01:00
Florian Kaltenberger
3fa926e410
Merge branch 'develop' into hotfix-phy_tools
2016-03-01 14:15:40 +01:00
Xenofon Foukas
4a04aeb2aa
Fixed bug in decoding frame and subframe number from sfn_sf field
2016-03-01 13:08:29 +00:00
Florian Kaltenberger
b46c6b700b
previous bugfix for dl_power_off in TM3 was incomplete
2016-03-01 12:08:59 +01:00
Florian Kaltenberger
7f645f9f34
Merge branch 'feature-59-tm4' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-59-tm4
2016-03-01 11:41:04 +01:00
Florian Kaltenberger
d988214e01
debug info for power control
2016-03-01 11:40:34 +01:00
lukashov
04b07f8bd3
Fixing bug with dl_offset in TM3. Always must be 1.
2016-03-01 11:08:45 +01:00
Navid Nikaein
75602a1267
correct tx_shift paremeter in config files for rrh and usrp
2016-02-29 21:45:30 +01:00
Navid Nikaein
9764c9247c
update trx_bladerf_write calls to match the common_lib.h trx_write_func
2016-02-29 21:40:49 +01:00
Xiwen JIANG
e3e30fbf07
add tm7 eNB config file
2016-02-29 18:16:12 +01:00
Xiwen JIANG
ea13be85b9
enable n_tx=8 in dlsim.c
2016-02-29 17:49:33 +01:00
Xiwen JIANG
f02e6ca526
add beamforming function
2016-02-29 17:15:26 +01:00
Rohit Gupta
661b1db758
added support for Huawei E398
2016-02-29 15:12:24 +01:00
Xiwen JIANG
c7c9da4296
cosmetic changes to enable multiple antenna transmission
2016-02-29 14:53:15 +01:00
lukashov
0022ccf790
Revert "Adding different shifts for CWs coming from dif constellations"
...
Streams must have the same shift, otherwise error floor. O
This reverts commit dbf587a515 .
2016-02-29 12:32:51 +01:00
Cedric Roux
5d62584c9f
quickfix of prach_zero_correlation parameter range check
...
in openair2/ENB_APP/enb_config.c
it was tested against 63, it should be tested against 15
no impact on processing whatsoever so no need to test
2016-02-29 12:08:11 +01:00
Xenofon Foukas
08783ca6d2
Merge remote-tracking branch 'origin/develop' into feature-68-enb-agent
2016-02-27 16:53:09 +00:00
Xenofon Foukas
ac8b74ef4a
Merge branch 'agent' into feature-68-enb-agent
2016-02-27 16:31:22 +00:00
Xenofon Foukas
a022eaf6b2
Merge remote-tracking branch 'oai/develop' into develop
2016-02-27 16:28:41 +00:00
Raymond Knopp
b241998102
nothing special
2016-02-26 19:10:11 +01:00
Xenofon Foukas
a8d646b108
Added agent support for remote scheduler
2016-02-26 17:30:54 +00:00
Raymond Knopp
04a541c3f6
Merge branch 'bugfix-48-L1L2signaling' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
2016-02-26 17:08:17 +01:00
Xenofon Foukas
f47f596a1f
Added support for liblfds7
2016-02-26 13:31:13 +00:00
Raymond Knopp
1473a3a652
applying hotfix for UE exit on DLSCH error to develop
2016-02-25 14:22:56 -08:00
Raymond Knopp
cb47dad14a
hotfix for UE exit on DLSCH error
2016-02-25 14:11:08 -08:00
Raymond Knopp
f6beede730
fixed bug in generate_RIVtables for 20 MHz distributed VRB allocations (openair1/PHY/LTE_TRANSPORT/dci_tools.c)
2016-02-25 09:30:44 -08:00
Xenofon Foukas
197726ce61
Fixed memory leaks in sf and mac config messages
2016-02-25 13:55:19 +00:00
Cedric Roux
7f4c22f851
bugfix in allocate_CCEs
2016-02-25 12:01:31 +01:00
Xenofon Foukas
24785b3a61
Fixed bugs in API function calls for UE config
2016-02-25 01:06:04 +00:00
Xenofon Foukas
9bbc22f496
Added UE state change message support
2016-02-24 18:28:32 +00:00
Xenofon Foukas
a5fd618770
Fixed bug of wrong rnti value when finding it using the UE id
2016-02-24 17:33:49 +00:00
Xenofon Foukas
4c7d1e0381
Added support for indication of a UE state in both RRC_CONNECTED and RRC_RECONFIGURED STATES
2016-02-24 17:31:13 +00:00
Xenofon Foukas
f84568e171
Bug fix when checking for the LCG of an LC
2016-02-24 14:40:03 +00:00
Xenofon Foukas
fffb682f7a
Added continuous update support
2016-02-24 14:38:44 +00:00
Xenofon Foukas
906e90727e
Fixed LC config reporting based on existing LCs
2016-02-24 12:47:24 +00:00
Xenofon Foukas
a637957c7c
Moved UE activation notification to RRC
2016-02-24 12:46:22 +00:00
Xenofon Foukas
00b158829f
Fixed bug in UE configuration message
2016-02-23 17:57:22 +00:00
Xenofon Foukas
e1d1b0baff
Added event notification for connection of a new UE
2016-02-23 17:53:43 +00:00
Xenofon Foukas
0ec3cfdf04
Added UE and LC config API function calls
2016-02-23 14:18:49 +00:00
Xenofon Foukas
4672497206
Added support for DL UE scheduler control delegation
2016-02-23 12:56:09 +00:00
Xenofon Foukas
25e5e3b837
Added script to automatically create cache for agent
2016-02-23 11:08:14 +00:00
Xenofon Foukas
d8cc6d95e6
Added support for control delegation and dynamic loading of libraries
2016-02-23 10:47:08 +00:00
Xenofon Foukas
7dd05df4ea
Added configuration support for local cache
2016-02-23 10:29:53 +00:00
lukashov
dbf587a515
Adding different shifts for CWs coming from dif constellations
2016-02-22 23:39:36 +01:00
lukashov
193ab717fa
Fix channel level
2016-02-22 22:49:34 +01:00
lukashov
f922b493a6
Bug in modulation.c with new qam tables. Error floor for 16QAM and 64QAM. Going back to old ones till fix the bug.
2016-02-22 22:43:47 +01:00
Cedric Roux
1657e0897c
Change the way we compute the sha1sum.
...
Line 4 of *.h files depends on the directory containing openair;
get rid of it.
2016-02-22 17:48:31 +01:00
Xiwen JIANG
71f6467581
adaption for lte-softmodem compilation
2016-02-22 17:28:50 +01:00
Xenofon Foukas
02686ce804
Added temporary notification for the deactivation of a UE in the MAC
2016-02-22 15:29:10 +00:00
Xenofon Foukas
95d51446f8
Added ue_state_change stub implementation
2016-02-22 15:25:27 +00:00
Cedric Roux
120369a6a0
better logging in autotests
2016-02-22 16:15:09 +01:00
Cedric Roux
9330a890dc
Small fixes in CMakeLists.txt
2016-02-22 16:14:13 +01:00
Cedric Roux
bae725a320
Deal with Rel8 RRC (not checked, just let fix_asn1 accept it).
...
Also modified CMakeLists.txt to run asn1tostruct.py at cmake time,
because the generated Makefile was wrong. When compiling with -j4
it would mess up by calling fix_asn1 twice with a weird timing,
leading to failures.
2016-02-22 16:08:08 +01:00
Xenofon Foukas
465168d2af
Integrated sf triggering to MAC layer and fixed bugs in creation of sf trigger message
2016-02-22 14:45:39 +00:00
Xenofon Foukas
991e995027
Changed get_harq function to provide both id and status at once
2016-02-22 14:08:11 +00:00
Xenofon Foukas
e6e117a567
Implemented LC config reply message
2016-02-22 13:08:26 +00:00
MKassem
591cb51a2d
Added sf trigger API functions
...
Signed-off-by: Xenofon Foukas <x.foukas@sms.ed.ac.uk >
2016-02-22 12:12:23 +00:00
Xenofon Foukas
1caa45ad4b
Integrated UE state messages to agent
2016-02-22 12:05:17 +00:00
Xenofon Foukas
b523682af0
Added support for UE state change message
2016-02-22 11:55:46 +00:00
Xenofon Foukas
7b1ee53a4e
Implemented UE config message (dummy)
2016-02-22 11:26:52 +00:00
Cedric Roux
9108ecbdf6
Use diff files and 'patch' instead of copying full files.
2016-02-22 11:40:26 +01:00
Xenofon Foukas
b6c9a4a713
Merge branch 'develop' into feature-68-enb-agent
...
Conflicts:
cmake_targets/CMakeLists.txt
openair2/ENB_APP/enb_config.c
openair2/ENB_APP/enb_config.h
2016-02-21 22:02:06 +00:00
Xenofon Foukas
93cf1b1df7
Fixed bug in assignment of enb_config_request_message
2016-02-21 21:39:22 +00:00
MKassem
08e25bf397
Added eNB configuration message
...
Signed-off-by: Xenofon Foukas <x.foukas@sms.ed.ac.uk >
2016-02-21 21:35:44 +00:00
Cedric Roux
a9256dedb3
Fix asn1c warnings.
...
The strategy is rather basic. Files with warnings are replaced
by an edited copy that triggers no warning.
We take care to check that the replaced file is the same as the
one that was analyzed at the time of warning removal (through
checking its SHA1).
There is a new bash script "fix_asn1" in cmake_targets/tools
and the files replacing the existing ones are in
cmake_targets/tools/fix_asn1.data.
2016-02-21 22:01:49 +01:00
Rohit Gupta
5f3961556d
Update eNB config USRP for band 13
2016-02-21 19:25:30 +01:00
Ubuntu
1740b0c517
USRP Band 13
2016-02-21 14:25:13 +00:00
Rohit Gupta
3af10bca14
config files for band13
2016-02-21 14:46:15 +01:00
gauthier
c32e5544e2
Make it compile on 15.10 (problem with gcc-xml not resolved, may be do as in openair-cn: disable it, it is only needed for ITTI ANALYZER)
2016-02-20 18:20:44 +01:00
gauthier
2078dafe54
Merge branch 'develop' into Feature-6-fix_test_core_network_with_scenarios
2016-02-20 18:00:44 +01:00
Raymond Knopp
a4ea1f9ba6
small changes in RRC
2016-02-19 21:24:08 +01:00
Xiwen JIANG
6fc604d182
conflict resolve for pdcchsim.c
2016-02-19 18:17:43 +01:00
Xiwen JIANG
3d2a1abb35
Merge branch 'develop' into feature-21-TM7 and conflict resolve
2016-02-19 17:43:03 +01:00
Florian Kaltenberger
38159dfc14
improving sudo usage in build script
2016-02-19 17:15:31 +01:00
Aikaterini
f4448a80eb
Merge branch 'bugfix-48-L1L2signaling' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
...
Conflicts:
openair1/SCHED/phy_procedures_lte_eNb.c
openair2/RRC/LITE/L2_interface.c
openair2/RRC/LITE/rrc_common.c
openair2/RRC/LITE/rrc_eNB.c
2016-02-19 16:03:20 +01:00
Aikaterini
33d9e8f2b5
Merge branch 'develop' into bugfix-48-L1L2signaling
2016-02-19 15:54:33 +01:00
Raymond Knopp
d4cdda31ab
Final changes for UE context management
2016-02-19 15:42:32 +01:00
Navid Nikaein
eb48479b37
check the rf_config_file name, and ignore if it is null
2016-02-19 15:12:41 +01:00
Xenofon Foukas
258a71ffbd
Fixed direction of hello message, as a reaction to controller stimulation
2016-02-19 13:55:29 +00:00
Xenofon Foukas
cb8b6db577
Fixed bug in periodic reporting, where ue flags were reset
2016-02-19 13:37:52 +00:00
Aikaterini
f261adc74f
add config file for rrh+usrp@band13
2016-02-19 13:30:20 +01:00
Aikaterini
38d8a7cde0
add config file for usrpb210@band13
2016-02-19 13:11:02 +01:00
Florian Kaltenberger
8984944444
fixing a bug in cmult_vv, removing unused code.
2016-02-19 11:47:25 +01:00
Raymond Knopp
cac00e34e1
temporary commit for debugging on another computer
2016-02-19 10:06:58 +01:00
Navid Nikaein
78913e263e
change rrh_gw_config naming in enb config file
2016-02-19 00:43:02 +01:00
Aikaterini
f7fde92665
config files update
2016-02-18 17:55:05 +01:00
Aikaterini
caf14c40d4
settings for 5MHz SoDERA
2016-02-18 17:54:12 +01:00
Aikaterini
7f29000c50
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-02-18 11:16:33 +01:00
Aikaterini Trilyraki
87dc41f067
Delete CMakelists.txt for rrH GW
2016-02-17 19:55:03 +01:00
Raymond Knopp
fdb81c2339
more changes for UE context management
2016-02-17 19:32:50 +01:00
Florian Kaltenberger
34bd5a865a
Merge branch 'develop' into hotfix-81-oaisim
...
Conflicts:
cmake_targets/autotests/test_case_list.xml
2016-02-17 17:40:23 +01:00
Aikaterini
e3c4cc9d79
fix name of SoDERA SDR config files
2016-02-17 17:08:18 +01:00
Aikaterini
b7e147e503
Merge branch 'enhancement-74-SoDeRa' into develop
2016-02-17 16:50:16 +01:00
Aikaterini
e439a59322
Merge branch 'feature-52-rrh-gw' into develop
2016-02-17 16:49:59 +01:00
Rohit Gupta
d13bb9d703
update config files for rrh + usrp
2016-02-17 16:24:00 +01:00
trilyrak
21a62e94b1
update/add config files for rrh + USRP/LMSSDR 5/10MHz
2016-02-17 14:27:48 +01:00
kaltenbe
80fe53c2f5
Merge remote-tracking branch 'origin' into bugfix-48-L1L2signaling
2016-02-17 14:03:47 +01:00
trilyrak
20aea40b9f
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-52-rrh-gw
2016-02-17 14:02:25 +01:00
Raymond Knopp
2ab37edc26
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-02-17 04:58:35 -08:00
trilyrak
0c104f3313
update config file for rrh
2016-02-17 13:51:24 +01:00
trilyrak
0da275a81b
updates for rrh configuration params
2016-02-17 13:51:00 +01:00
trilyrak
1765790480
updated enb configuration params for rrh
2016-02-17 13:50:12 +01:00
trilyrak
78a4715932
updated enb configuration params for rrh
2016-02-17 13:50:05 +01:00
Aikaterini
1de3183dab
fix for RRH compilation
2016-02-16 21:11:52 +01:00
Aikaterini
f3c7d75364
fix for RRH
2016-02-16 21:10:24 +01:00
Aikaterini
ff6174aeb1
fix SoDERA RRH config
2016-02-16 18:19:39 +01:00
Aikaterini
2343d3fbe5
Merge branch 'enhancement-74-SoDeRa' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-74-SoDeRa
2016-02-16 17:33:44 +01:00
Aikaterini
4079a46cb8
config files for RRH SoDERA
2016-02-16 17:33:15 +01:00
Florian Kaltenberger
aaf86b09f3
Merge branch 'enhancement-74-SoDeRa' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-74-SoDeRa
2016-02-16 16:54:56 +01:00
Florian Kaltenberger
f722b2971d
including LMSSDR CMakeList.txt into main CMakeList.txt
2016-02-16 16:53:07 +01:00
Aikaterini Trilyraki
e697b22253
Delete .#lte-softmodem.c
2016-02-16 16:29:44 +01:00
kaltenbe
e18dddf3ab
added SeDoRa eNodeB Configuration files
2016-02-16 16:23:23 +01:00
kaltenbe
c5bdcd5cb3
added missing directory to lms7002m
2016-02-16 15:54:19 +01:00
kaltenbe
f1298f804a
added CMakeLists.txt to LMSSDR/lmsSDR
2016-02-16 15:50:02 +01:00
kaltenbe
d9ec978c9c
Merge remote-tracking branch 'origin/develop' into enhancement-74-SoDeRa
...
Conflicts:
cmake_targets/CMakeLists.txt
cmake_targets/build_oai
targets/ARCH/COMMON/common_lib.c
targets/ARCH/COMMON/common_lib.h
targets/RT/USER/lte-softmodem.c
2016-02-16 15:45:12 +01:00
Raymond Knopp
b30d3c92ad
added missing threequarter_fs parameter to lte_param_init in ulsim.c
2016-02-16 02:31:48 -08:00
Raymond Knopp
64c36e318a
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-02-16 01:27:30 -08:00
kaltenbe
7998985dd5
10 MHz configurations for SoDeRa.
2016-02-15 22:31:28 +01:00
Rohit Gupta
e64f3641c9
Merge branch 'feature-38-bladerf' into develop
2016-02-15 19:43:50 +01:00
Rohit Gupta
dded63e6e9
added flags param to trx_brf_write
2016-02-15 19:42:59 +01:00
Rohit Gupta
59241c47fc
Merge branch 'develop' into feature-38-bladerf
2016-02-15 19:41:59 +01:00
Rohit Gupta
e094226da9
Merge branch 'feature-52-rrh-gw' into develop
2016-02-15 19:21:04 +01:00
Rohit Gupta
fdb71a0a13
fixes for Ethernet timing
2016-02-15 19:20:15 +01:00
kaltenbe
59f6146a35
UE UL failure debugging
2016-02-15 19:08:08 +01:00
Florian Kaltenberger
927975f138
small bugfix + cosmetic changes
2016-02-15 15:00:48 +01:00
Raymond Knopp
61bff80ccb
added UL failure indication to PHY/MAC/RRC eNodeB procedures.
2016-02-14 14:32:11 -08:00
kaltenbe
92987e4c9b
small modifications in lms_lib.cpp
...
added configuration file for lowband of SoDeRa
2016-02-14 20:31:38 +01:00
gauthier
44facafed9
Merge branch 'develop' into Feature-6-fix_test_core_network_with_scenarios
2016-02-11 21:44:38 +01:00
Rohit Gupta
f65b478c86
Merge branch 'feature-42-doxygen' into develop
2016-02-11 11:32:53 +01:00
Rohit Gupta
42e245c9ea
resolve conflict after merging from develop
2016-02-11 10:44:10 +01:00
Rohit Gupta
b9c9ff3b02
Merge branch 'feature-52-rrh-gw' into develop
2016-02-11 10:41:50 +01:00
kaltenbe
98a05dfbb8
deleted unnecessary files and added lmsSDR, lms7002m directories
2016-02-11 10:13:43 +01:00
kaltenbe
051a4e2aa5
added Si5351C directory
...
changes in lmslib.cpp
2016-02-11 10:04:36 +01:00
Florian Kaltenberger
6412b22658
phy test for UE
2016-02-11 09:41:37 +01:00
Rohit Gupta
eb690c8919
merge develop + resolve conflicts
2016-02-10 19:24:13 +01:00
Xenofon Foukas
b64cb5b250
Added rank indication and timing advance indication support
2016-02-10 18:07:35 +00:00
Rohit Gupta
fc4314e051
Merge branch 'feature-34-test_framework' into develop
2016-02-10 18:48:12 +01:00
Rohit Gupta
7e41fc86e6
Merge branch 'develop' into feature-34-test_framework
2016-02-10 18:47:57 +01:00
Rohit Gupta
da4f8bfc53
update BladeRF TX calibration
2016-02-10 18:47:49 +01:00
Rohit Gupta
4248930b90
Merge branch 'feature-52-rrh-gw' into develop
2016-02-10 18:46:09 +01:00
Xenofon Foukas
a663654418
Patch to get tx_queue size from RLC for the LCs of a UE
2016-02-10 13:41:56 +00:00
Rohit Gupta
c5c5d9d10d
fix for bladeRF init
2016-02-10 11:13:32 +01:00
Rohit Gupta
0340ec53f5
fixes for EXMIMO as it is not harmonized with dynamic library linking of HW targets
2016-02-10 10:54:40 +01:00
Rohit Gupta
b8dde7ba91
EXMIMO handling special case for device library
2016-02-10 10:36:22 +01:00
Xenofon Foukas
8aff18aed5
Fixed bug with toggling the NDI for DL HARQ retransmissions
2016-02-09 17:53:49 +00:00
Aikaterini
6b51798803
update gtkwave file
2016-02-09 17:57:29 +01:00
Aikaterini
5a284b2f4a
remove dynamic linking for EXMIMO
2016-02-09 16:20:24 +01:00
Aikaterini
9aeca6d0cc
Merge branch 'feature-52-rrh-gw' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-52-rrh-gw
2016-02-09 16:18:11 +01:00
Rohit Gupta
908da0737b
updated for RRH test cases
2016-02-09 16:16:23 +01:00
Florian Kaltenberger
7ed596fe95
build_script: enabling XFORMS by default, making HW=None default
2016-02-09 15:36:23 +01:00
Florian Kaltenberger
051e8ba5cf
adding option -s15 to all oaisim testcases except the ones that use OCG (-c)
...
tdd testcases now use dedicted config file
2016-02-09 15:26:01 +01:00
Florian Kaltenberger
1d27c988fd
adding option -s15 to all oaisim testcases except the ones that use OCG (-c)
...
tdd testcases now use dedicted config file
2016-02-09 15:05:22 +01:00
Xenofon Foukas
2de0b9b5e1
Merge branch 'develop' into feature-68-enb-agent
2016-02-09 13:48:02 +00:00
Xenofon Foukas
ff72fbc6bc
Integrated progRAN config messages to OAI agent and created stubs for handler and destructor functions
2016-02-09 13:33:48 +00:00
Xenofon Foukas
a0289d74fa
Added support for eNB, cell, UE and logical channel configuration messages to the progRAN protocol
2016-02-09 13:03:31 +00:00
Rohit Gupta
bbcd5ec030
Merge branch 'develop' into feature-52-rrh-gw
2016-02-09 11:56:36 +01:00
Aikaterini
77406609d8
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-52-rrh-gw
2016-02-09 11:44:54 +01:00
Florian Kaltenberger
b60c3c9556
phy test for UE first version
2016-02-09 10:23:57 +01:00
Florian Kaltenberger
36fb0aae16
initial synch gain control measurement when unsynchronized reverted to take measurement around PSS
2016-02-09 10:18:00 +01:00
kaltenbe
2b61863abb
TX/RX Calibration procedures (lighter than full LMS procedures)
2016-02-09 09:29:26 +01:00
Rohit Gupta
72ed3f6441
Merge branch 'feature-34-test_framework' into develop
2016-02-08 20:18:12 +01:00
Rohit Gupta
301f617ad6
updates for BladeRF (moved to mozart)
2016-02-08 20:17:21 +01:00
Aikaterini
a7289a6daf
update build_oai CMakelists.txt wrt lowlatency flag
2016-02-08 19:48:45 +01:00
Florian Kaltenberger
41e3429e65
reverting to LOG_D in gain control
2016-02-08 16:53:54 +01:00
Florian Kaltenberger
ad88d47802
xforms is now a command line option in oaisim and the flag XFORMS can be always enabled
2016-02-08 16:52:46 +01:00
Florian Kaltenberger
8b533eb133
adding config file for TDD
2016-02-08 16:42:02 +01:00
Aikaterini
01d160f677
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-52-rrh-gw
2016-02-08 14:23:01 +01:00
Aikaterini
de6a3ab9ed
remove print
2016-02-08 14:22:42 +01:00
Aikaterini
62423d0c60
minor update
2016-02-08 14:22:17 +01:00
Aikaterini
b035bbb987
add commment
2016-02-08 13:58:00 +01:00
Aikaterini
8cff5fcf3b
1)remove option 'M' 2) tx shift value is set in device libraries 3) check for tx processing launching updated wrt alcatel suggestions
2016-02-08 13:56:51 +01:00
Aikaterini
3a1874a145
add openair0_cgf params in device libraries for tx triggering and IQ samples shift
2016-02-08 13:50:36 +01:00
Aikaterini
2fbbbdf080
add check for fronthaul conf params
2016-02-08 13:49:10 +01:00
Rohit Gupta
0ce71556f2
Merge branch 'develop' into feature-34-test_framework
2016-02-08 11:54:50 +01:00
Rohit Gupta
02cb3a18d7
Merge branch 'feature-38-bladerf' into develop
2016-02-08 11:53:39 +01:00
Rohit Gupta
f403890541
add sudo bladeRF firmware flash
2016-02-08 11:52:58 +01:00
Aikaterini
48f1154444
make changes to use the fronthaul configuration parameters - updates to rrh_gw.c and eNB_transport.c wrt to changes in openair0_device struct
2016-02-07 20:07:05 +01:00
Aikaterini
b39e017541
update ethernet library wrt changes in openair0_device - add packet sequence number
2016-02-07 20:00:33 +01:00
Aikaterini
fafee9508b
include packet sequence number in vcd logging
2016-02-07 19:54:21 +01:00
Rohit Gupta
5c9b40e1bb
Merge branch 'develop'
2016-02-07 13:27:23 +01:00
Rohit Gupta
47a460f844
Merge branch 'develop' into feature-42-doxygen
2016-02-07 13:25:19 +01:00
Rohit Gupta
7dabcfe06f
Merge branch 'feature-34-test_framework' into develop
2016-02-07 12:45:40 +01:00
Rohit Gupta
c303b94237
updates for BLADERF test case + cleanup
2016-02-07 12:44:52 +01:00
Navid Nikaein
bb87425898
add eNB agent libs to lte-softmodem
2016-02-06 09:31:33 +01:00
Rohit Gupta
892efb01d7
changed exec permissions for blade RF start
2016-02-05 18:48:51 +01:00
Rohit Gupta
df67178a84
Added bladeRF support + creation of common autotest library
2016-02-05 18:27:08 +01:00
Rohit Gupta
979c84ac07
updated timing for resetting UE
2016-02-05 15:25:23 +01:00
Rohit Gupta
b5067daa3e
Merge branch 'develop' into feature-34-test_framework
2016-02-05 15:19:54 +01:00
Aikaterini
1a9982cae7
correction in conf file for rrh_gw
2016-02-05 13:27:32 +01:00
Aikaterini
fb19df9d0d
update CMakelists.txt - update build_oai (add checks for args validity , minor update to linked libraries)
2016-02-05 13:24:05 +01:00
Aikaterini
ca790b5903
resolve errors after merging with develop / add configuration file for RRH with USRP
2016-02-05 11:10:28 +01:00
Rohit Gupta
3cc29108c6
Merge branch 'develop' into hotfix-81-oaisim
2016-02-05 10:49:48 +01:00
Rohit Gupta
71821e946e
Merge branch 'feature-34-test_framework' into develop
2016-02-05 10:49:36 +01:00
Rohit Gupta
73c79bcca0
stop Gitlab CI execution when cleanup fails
2016-02-05 10:49:14 +01:00
Xenofon Foukas
a404bfd96c
Refactored eNB agent scheduler code to improve readability
2016-02-04 17:32:37 +00:00
Florian Kaltenberger
392e38ab22
Merge branch 'develop' into enhancement-64-phy_test
...
Conflicts:
openair1/SCHED/phy_procedures_lte_eNb.c
2016-02-04 14:49:14 +01:00
Rohit Gupta
0a460b2e7c
Merge branch 'develop' into hotfix-81-oaisim
2016-02-04 14:48:57 +01:00
Rohit Gupta
83ae5da34a
Merge branch 'feature-34-test_framework' into develop
2016-02-04 14:48:29 +01:00
Rohit Gupta
1a751a1980
commits to modify test case config file for TDD (oaisim tests)
2016-02-04 14:47:53 +01:00
Rohit Gupta
f5351535fc
commits to modify test case config file for TDD (oaisim tests)
2016-02-04 14:47:34 +01:00
Florian Kaltenberger
1769eca225
improved gain control when not synched
2016-02-04 14:42:16 +01:00
Xenofon Foukas
b784e6bd64
Refactored code to improve readability in fill_oai_dci function
2016-02-04 13:29:05 +00:00
Xenofon Foukas
e3aa8400d4
Added support for progran dl_mac_config message destruction
2016-02-04 11:28:54 +00:00
Xenofon Foukas
db255c130d
Added definitions for the mac agent scheduler
2016-02-04 11:28:22 +00:00
Florian Kaltenberger
39e497b80d
gain control init to lower value
...
removed strage exit in UE receiver
2016-02-03 22:01:51 +01:00
Aikaterini
8fc747ac7a
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-52-rrh-gw
2016-02-03 19:27:37 +01:00
Aikaterini
d209fe5dd8
merge develop into branch
2016-02-03 19:27:05 +01:00
Xenofon Foukas
e8f4e4e01f
Separated control from data plane in MAC agent scheduler
2016-02-03 17:44:20 +00:00
Xenofon Foukas
3d3c0c7c03
Bug fixes for UE retransmission
2016-02-03 15:39:51 +00:00
Rohit Gupta
bb346de6fe
Merge branch 'develop' into feature-34-test_framework
2016-02-03 16:26:51 +01:00
Xenofon Foukas
fd09bd61bf
Fixed bug with NDI toggling
2016-02-03 14:27:17 +00:00
Rohit Gupta
9e8c43338c
Merge branch 'feature-34-test_framework' into develop
2016-02-03 11:49:51 +01:00
Rohit Gupta
353f5f25d2
removed NFS check
2016-02-03 11:49:23 +01:00
gauthier
2a91fa88c7
bugfix in phy_scope_lte
...
increase maximum users in eNodeB to 16
2016-02-03 11:17:27 +01:00
Xenofon Foukas
a8cd23944f
Progran scheduler fixes
2016-02-02 19:18:42 +00:00
Aikaterini
064c888047
incorporate Navid's fronthaul conf params
2016-02-02 18:00:15 +01:00
Aikaterini
a3c40dc356
revert lte-softmodem to previous version
2016-02-02 17:59:22 +01:00
Aikaterini
9b68212e5d
Merge branch 'feature-52-rrh-gw' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-52-rrh-gw
2016-02-02 17:52:34 +01:00
Aikaterini
199aa2d069
undo test
2016-02-02 17:51:53 +01:00
Xenofon Foukas
07edce1712
Changes to the progran default scheduler
2016-02-02 16:39:39 +00:00
Aikaterini
b31722af81
test
2016-02-02 17:36:42 +01:00
Rohit Gupta
a5f21b0488
Merge branch 'develop' into feature-43-doxygen
2016-02-02 13:06:31 +01:00
Xenofon Foukas
afdc20a91b
Merge branch 'develop' into feature-68-enb-agent
2016-02-02 09:51:39 +00:00
Xenofon Foukas
ab0e4aadae
Reintroduced support for agent scheduler after merge with develop
2016-02-01 17:20:35 +00:00
kaltenbe
40656e0e49
some changes in logging for XFORMS and UL scheduling (activation in all subframes and retransmissions only via PHICH)
2016-02-01 17:43:31 +01:00
Rohit Gupta
acd607fa35
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-02-01 14:43:39 +01:00
Rohit Gupta
6145ee3a90
Merge branch 'feature-34-test_framework' into develop
2016-02-01 14:43:05 +01:00
Rohit Gupta
e029738562
configure nruns and duration of lte-softmodem test cases
2016-02-01 14:42:43 +01:00
Florian Kaltenberger
8bbcfbe5cb
changing LOG_E to LOG_W in rx_pucch_emul when UE is not found (this might happen during attach procedure but is ok since nothing will happen)
2016-02-01 14:18:00 +01:00
Xenofon Foukas
a91a25c972
Changed signature of DL scheduling function of agent
2016-02-01 11:38:07 +00:00
Xenofon Foukas
64a02f3b67
Merge remote-tracking branch 'origin/develop' into feature-68-enb-agent
2016-01-31 18:15:36 +00:00
Xenofon Foukas
cdb3e36b99
Fixes to merge with develop
2016-01-31 18:13:05 +00:00
kaltenbe
d30eeea8e5
integration with Lime contribution for LMSSDR library. Renamed everything from SODERA to LMSSDR
2016-01-30 23:44:14 +01:00
gauthier
1ecd5beb36
Merge branch 'develop' into bugfix-48-L1L2signaling
2016-01-29 14:51:33 +01:00
kaltenbe
fb7f4ab9d9
removed old stuff
2016-01-29 09:49:36 +01:00
kaltenbe
2b5f756d47
getting ready for rename
2016-01-29 09:45:28 +01:00
Raymond Knopp
ec96a43dc3
integration, compiles now.
2016-01-28 23:24:17 -08:00
kaltenbe
9d4f383421
first integration. doesn't compile.
2016-01-28 20:21:38 +01:00
Xenofon Foukas
cb8007bb31
Added support for enb agent MAC scheduler hot-plugging. Deactivated schedule_ue_spec and added agent UE specific DL scheduler
2016-01-28 14:45:47 +00:00
gauthier
8402a1a30e
lte_eNB_measurements
2016-01-28 11:35:36 +01:00
Rohit Gupta
4c31f2a187
Merge branch 'feature-34-test_framework' into develop
2016-01-27 19:37:32 +01:00
Rohit Gupta
88473207a1
fixed bug in xml file
2016-01-27 19:37:02 +01:00
Rohit Gupta
66fe461bb4
Merge branch 'feature-34-test_framework' into develop
2016-01-27 19:10:55 +01:00
Rohit Gupta
20834d6947
hotfix for CCE bug
2016-01-27 19:10:09 +01:00
Rohit Gupta
16cce46265
cleanup redundant options in test cases
2016-01-27 19:07:28 +01:00
Rohit Gupta
ad333a4a09
updated new test cases for OAI EPC
2016-01-27 18:36:04 +01:00
Rohit Gupta
01d3750677
hotfix for CCE bug
2016-01-27 18:15:21 +01:00
kaltenbe
9e28189d9b
PLL Configuration
2016-01-27 17:20:19 +01:00
Xenofon Foukas
92f547655c
Integrated MAC DL config progran message to agent
2016-01-27 12:54:33 +00:00
Rohit Gupta
2342091bcc
change the num_recv_frames for USRP B210 to reduce UUULLLL's
2016-01-27 13:42:05 +01:00
Xenofon Foukas
c1c9b0bcbe
Added support for DL scheduling command messages
2016-01-27 12:01:37 +00:00
Rohit Gupta
d000bf2fd6
hotfix for bad USRP init
2016-01-27 11:04:19 +01:00
gauthier
5319fcba38
Bug, needed unsigned instead of signed
2016-01-27 08:39:44 +01:00
gauthier
10a764c472
Traces + shift timing bug
2016-01-26 16:45:48 +01:00
kaltenbe
c9780626ed
further RF configuration for SoDeRa
2016-01-26 14:09:47 +01:00
Raymond Knopp
94029935c9
added configuration file for SoDeRa
2016-01-26 00:18:34 -08:00
kaltenbe
de3ba76b2f
first steps of SoDeRa configuration
2016-01-26 01:21:59 +01:00
Rohit Gupta
26a989ede1
Merge branch 'develop' into feature-34-test_framework
2016-01-25 10:55:03 +01:00
Raymond Knopp
191e93cc91
basic skeleton for SoDeRa OAI library
2016-01-25 01:13:24 -08:00
lukashov
bca0b40679
Small changes in precoder to max MI 1stream
2016-01-24 16:44:33 +01:00
Raymond Knopp
2206625d18
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-01-23 09:01:08 -08:00
Raymond Knopp
015187e578
AVX2 optimization activated for gamma computation in 16-bit turbo decoder (single-codeword)
2016-01-23 08:59:36 -08:00
Xenofon Foukas
3df4cbae6b
Merge branch 'feature-68-enb-agent' of gitlab.eurecom.fr:oai/openairinterface5g into feature-68-enb-agent
2016-01-22 16:29:57 +00:00
Xenofon Foukas
16bbb96d5b
Added continuous update functionality in the MAC layer
2016-01-22 16:29:21 +00:00
Xenofon Foukas
e3e01a64c9
Added continuous update functionality in the MAC layer
2016-01-22 16:28:44 +00:00
Xenofon Foukas
3ad4d26fd1
Changed the structures for storing agent context info
2016-01-22 16:26:06 +00:00
Xenofon Foukas
dec1c93c3d
Changed channel struct for async_channel implementation
2016-01-22 16:18:54 +00:00
Cedric Roux
82b0b3bad3
Merge branch 'hotfix-74-UE_disconnect_reconnect' into develop
2016-01-22 11:55:38 +01:00
Cedric Roux
75bba781e9
msg_p should be msg_delete_tunnels_p
2016-01-22 11:54:16 +01:00
lukashov
9410e89310
Small change in measurements: while calculating pmi take into account ch_12[1] as well.
2016-01-22 11:52:51 +01:00
aikaterini.trilyraki
e7b545479e
Merge branch 'bugfix-48-L1L2signaling' into develop
2016-01-22 10:03:34 +01:00
Florian Kaltenberger
eb03e01faf
dlsim compilation issue fixed
2016-01-21 20:58:29 +01:00
Xenofon Foukas
a054eb8139
Added helper functions for the continuous update of MAC stats
2016-01-21 15:27:52 +00:00
Rohit Gupta
ea3cd02261
Merge branch 'develop' into bugfix-48-L1L2signaling
2016-01-21 14:25:53 +01:00
Rohit Gupta
6a7bf803b5
Merge branch 'feature-34-test_framework' into develop
2016-01-21 14:23:40 +01:00
Rohit Gupta
6066ebb764
added tests for OAI EPC
2016-01-21 14:22:55 +01:00
aikaterini.trilyraki
60a3af3e98
perpetual scheduling turned on / extra logging in CCE allocation
2016-01-21 13:49:56 +01:00
Rohit Gupta
132b71a01f
override timeout_cmd + addl OAI CN test cases
2016-01-21 12:06:41 +01:00
Rohit Gupta
b02de1604e
override timeout command for lte-softmodem test cases
2016-01-21 11:34:27 +01:00
Rohit Gupta
cecaabf533
minor fix for logging
2016-01-21 10:36:40 +01:00
Rohit Gupta
de1ec46550
minor bugfix
2016-01-20 19:35:43 +01:00
Rohit Gupta
27b0306b18
added option for skipping check for GitHead local/remote
2016-01-20 16:45:46 +01:00
Rohit Gupta
e06212951b
update for 015603 IPV4 ADDRESS for UE
2016-01-20 16:37:55 +01:00
lukashov
c453384e97
Small improvement in correlation
2016-01-20 16:29:07 +01:00
Rohit Gupta
4c1f666799
addition of 0156* test cases for OAI Core Network
2016-01-20 16:14:00 +01:00
lukashov
c7d2bbe513
avg_0[0] = avg_0[0] + avg_0[1];
...
avg_1[0] = avg_1[0] + avg_1[1];
Diff per-layer shift
2016-01-20 16:08:54 +01:00
aikaterini.trilyraki
d6547c8041
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
2016-01-20 15:52:54 +01:00
Rohit Gupta
c45fa7e76b
added delay for OAI HSS startup (015600)
2016-01-20 15:02:10 +01:00
Rohit Gupta
ed42b8111f
added delay in eNB startup (015600)
2016-01-20 14:13:52 +01:00
Rohit Gupta
a485d1745c
test IP config for 015600
2016-01-20 14:00:28 +01:00
Rohit Gupta
cf9ea69c1e
fix for eNB config script (015600)
2016-01-20 13:29:47 +01:00
Rohit Gupta
f0dbe38451
fix for eNB config script (015600)
2016-01-20 13:29:16 +01:00
Rohit Gupta
f19c8ca7fb
added absolute path for openair-cn scripts
2016-01-20 13:28:27 +01:00
Rohit Gupta
a1a1e917de
fixed a bug in update_config_file function
2016-01-20 10:55:09 +01:00
Rohit Gupta
ecae59c529
fixed a bug in update_config_file function
2016-01-20 10:48:33 +01:00
Rohit Gupta
4af63f381b
updates for 0156* test case
2016-01-20 10:38:55 +01:00
Rohit Gupta
b6d53d0a23
enable 015600 test case
2016-01-20 10:20:42 +01:00
Rohit Gupta
5309c9c491
fixed minor bug for logging
2016-01-20 10:19:54 +01:00
Rohit Gupta
e7d6f36075
Merge branch 'develop' into feature-34-test_framework
2016-01-19 19:46:30 +01:00
Rohit Gupta
4843f4de21
added testcase 015600 for OAI local EPC
2016-01-19 19:45:38 +01:00
Rohit Gupta
9a8f67db25
zip file without directory path
2016-01-19 19:37:50 +01:00
Rohit Gupta
d25786dbd9
added support for IPV4_LIST option in epc.conf.in EPC config file
2016-01-19 19:36:23 +01:00
Rohit Gupta
5ebff86675
added support for specifying gateway + help print
2016-01-19 19:35:21 +01:00
Rohit Gupta
d927bf6b1f
modified to not kill processes in test cases if some threads crash
2016-01-19 17:24:08 +01:00
Rohit Gupta
93c04cb775
compress the pcap file due to its size
2016-01-19 17:20:19 +01:00
Xenofon Foukas
78bc736c19
Fixed frame-subframe numbering bug
2016-01-19 14:51:20 +00:00
Rohit Gupta
9636596639
Merge branch 'bugfix-33-RRCConnectionRequest_with_STMSI' into develop
2016-01-19 12:57:28 +01:00
Rohit Gupta
93c176f5c8
Merge branch 'develop' into bugfix-33-RRCConnectionRequest_with_STMSI
2016-01-19 12:44:57 +01:00
Xenofon Foukas
1f52063065
Merged UL/DL trigger messages to a single SF trigger message
2016-01-19 11:11:05 +00:00
Xenofon Foukas
876d9eac52
Fixed bug when creating cell report stats reply
2016-01-19 10:12:48 +00:00
aikaterini.trilyraki
e3899ced43
* fix the MME connection timer when MME is not yet availablewqwq
2016-01-19 10:28:29 +01:00
lukashov
56c660dbe9
Undoing previos commit. Previous commit is kept to generate TM4 PCE AWGN plots with the right precoder.
2016-01-18 22:55:47 +01:00
lukashov
e60c6e3f84
This commit is to generate TM4 awgn with perfect channel estimation with the right precoder.
...
To be reverted after.
2016-01-18 21:09:59 +01:00
lukashov
dcf4473284
Coming back to
...
avg_0[0] = avg_0[0] + avg_0[1];
avg_1[0] = avg_1[0] + avg_1[1];
avg_0[0] = max (avg_0[0], avg_1[0]);
avg_1[0] = avg_0[0];
2016-01-18 18:04:54 +01:00
Rohit Gupta
f3df7705ed
fixed a bug for tshark logging
2016-01-18 17:21:25 +01:00
aikaterini.trilyraki
a384b91e91
pull from develop
2016-01-18 15:16:02 +01:00
Rohit Gupta
9023198a2b
fixed bug for python script
2016-01-18 12:24:49 +01:00
Rohit Gupta
7f62e8ab7c
fix for tshark permissions
2016-01-18 12:13:59 +01:00
Rohit Gupta
b5e9d7af4d
Merge branch 'develop' into feature-34-test_framework
2016-01-18 11:34:43 +01:00
Rohit Gupta
125cb4d43f
addition of wireshark trace
2016-01-18 11:33:50 +01:00
Rohit Gupta
260d32944f
added wireshark tracing
2016-01-17 21:20:46 +01:00
Rohit Gupta
d35c04b192
Merge branch 'develop' into feature-42-doxygen
2016-01-17 20:19:50 +01:00
Rohit Gupta
d1f6c1c1a3
Merge branch 'feature-34-test_framework' into develop
2016-01-17 20:19:33 +01:00
Rohit Gupta
043e771ed7
resolve conficts due to merge from develop
2016-01-17 20:18:44 +01:00
Rohit Gupta
6bab0de2da
override number of runs for lte-softmodem test case
2016-01-17 18:59:04 +01:00
lukashov
b6ac32b0db
Chosing the max channel among the four and passing same shift everywhere.
2016-01-17 16:50:53 +01:00
lukashov
071db178eb
avg_0[0] = max(avg_0[0],avg_0[1]);
...
avg_1[0] = max(avg_1[0],avg_1[1]);
2016-01-17 02:29:14 +01:00
lukashov
f703b8e1c5
Playing with average channel level: avg_0[0] = max(avg_0[0],avg_1[0]);
...
avg_1[0] = max(avg_0[1],avg_1[1]); taking this into account in correlation.
2016-01-17 00:39:39 +01:00
lukashov
f415d7118d
Applying output shift on per-antenna basis in demodulation
2016-01-16 12:49:58 +01:00
Rohit Gupta
8ffaca89c1
Merge branch 'feature-34-test_framework' into develop
2016-01-15 19:24:59 +01:00
Rohit Gupta
7cc2a5cd77
bugfix for passing multiple args
2016-01-15 19:24:13 +01:00
Rohit Gupta
2bde7350c7
addd extra args to build script
2016-01-15 19:20:27 +01:00
Rohit Gupta
b19b323934
addd extra args to build script
2016-01-15 19:15:32 +01:00
Rohit Gupta
19dc2cd118
test input args
2016-01-15 19:01:18 +01:00
Rohit Gupta
970b4b395a
added option to stop the script by detault
2016-01-15 18:55:23 +01:00
Rohit Gupta
5b1cb16939
addition of argument parser
2016-01-15 18:47:22 +01:00
Xenofon Foukas
5cec297209
Implemented handlers for the UL/DL trigger messages
2016-01-15 18:07:42 +02:00
Xenofon Foukas
2fbe01e15f
Added support for timing messages in DL/UL
2016-01-15 16:38:37 +02:00
Xenofon Foukas
ed7e13c6eb
Integrated abstract network communication in main agent
2016-01-15 14:31:21 +02:00
Xenofon Foukas
8fde111b93
Channel implementation for async interface
2016-01-15 14:30:02 +02:00
Rohit Gupta
be2b9d4146
Merge branch 'feature-38-bladerf' into develop
2016-01-15 12:55:59 +01:00
Rohit Gupta
9ab924399c
Merge branch 'develop' into feature-38-bladerf
...
Conflicts:
cmake_targets/CMakeLists.txt
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-ue.c
2016-01-15 12:36:31 +01:00
Rohit Gupta
771bab798d
Merge branch 'enhancement-57-UHD-interfacing' into develop
2016-01-15 12:14:46 +01:00
lukashov
98b91e1d4c
Improving previous commit
2016-01-14 22:14:24 +01:00
lukashov
7b5165c70a
Small change in log2_approx in demodulation
2016-01-14 21:05:56 +01:00
Rohit Gupta
9f0327247f
Merge branch 'develop' into enhancement-57-UHD-interfacing
2016-01-14 18:57:39 +01:00
Rohit Gupta
f9d1f85593
Merge branch 'feature-34-test_framework' into develop
2016-01-14 18:57:25 +01:00
Rohit Gupta
c2d8dd96aa
update for killing zombie processes
2016-01-14 18:57:13 +01:00
gauthier
79a25fe989
MNC length in GUMMEI
2016-01-14 18:49:55 +01:00
Rohit Gupta
4cc3ec38eb
Merge branch 'develop' into enhancement-57-UHD-interfacing
2016-01-14 18:47:36 +01:00
Rohit Gupta
82dfd48b1d
Merge branch 'feature-34-test_framework' into develop
2016-01-14 18:47:27 +01:00
Rohit Gupta
a2b8344458
kill zombie ssh processes
2016-01-14 18:46:37 +01:00
Rohit Gupta
81dcf00b9f
Merge branch 'develop' into enhancement-57-UHD-interfacing
2016-01-14 18:34:03 +01:00
Rohit Gupta
44247b112a
Merge branch 'feature-34-test_framework' into develop
2016-01-14 18:33:45 +01:00
Rohit Gupta
853bad6c47
added option to kill zombie ssh sessions created by autotest
2016-01-14 18:32:54 +01:00
Rohit Gupta
ac89db6daf
removal of cache to insert exmimo driver
2016-01-14 18:31:48 +01:00
gauthier
dcba8c19ae
Sent of S_TMSI OK
2016-01-14 18:26:27 +01:00
Xenofon Foukas
e6762ffe1f
Added support for multiple eNBs in an emulation environment
2016-01-14 19:10:27 +02:00
gauthier
c7483721f9
to be tested
2016-01-14 17:07:10 +01:00
Xenofon Foukas
dbcf482f07
Added eNB agent abstract network interface support
2016-01-14 17:46:06 +02:00
gauthier
e53353bca7
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2016-01-14 15:09:48 +01:00
gauthier
a758a63f75
Work with virtual interfaces, you will have to set the eNB virtual interfaces up yourself (ifconfig ethx:y ipv4@ up)
2016-01-14 15:07:30 +01:00
Florian Kaltenberger
b76da1942a
disabling XFORMS compile options for unitary simulators, since it does not work with CI tests
2016-01-14 11:58:14 +01:00
lukashov
b00f64ed56
1)Removing dlsch_dual_stream_correlation
...
2) Fixing bug in mrc_TM4 - removing loop over tx antennas.
2016-01-14 10:55:49 +01:00
Rohit Gupta
72663a32af
Merge branch 'develop' into enhancement-57-UHD-interfacing
2016-01-14 10:46:32 +01:00
Rohit Gupta
330bbeee16
Merge branch 'feature-34-test_framework' into develop
2016-01-14 10:45:52 +01:00
Rohit Gupta
3d16bd44be
changed for new rx gain settings
2016-01-14 10:45:12 +01:00
gauthier
d0f0e5e793
Merge branch 'develop' into bugfix-33-RRCConnectionRequest_with_STMSI
2016-01-14 10:44:59 +01:00
lukashov
10e8d30699
NULL pointer
2016-01-13 23:54:25 +01:00
lukashov
fa315a3115
Fixing bug in passing arguments to dlsch_dual_stream_correlation, introducing dlsch_dual_stream_correlation_opposite
2016-01-13 18:54:03 +01:00
Rohit Gupta
6f2d8f0910
Merge branch 'develop' into enhancement-57-UHD-interfacing
2016-01-13 16:53:33 +01:00
Rohit Gupta
6b18d5f75c
Merge branch 'feature-34-test_framework' into develop
2016-01-13 16:53:17 +01:00
Rohit Gupta
31048d13b4
added option to run cleanup before every run
2016-01-13 16:52:44 +01:00
Rohit Gupta
2224225ae8
Merge branch 'develop' into enhancement-57-UHD-interfacing
2016-01-13 16:42:28 +01:00
Rohit Gupta
fffcb784b1
Merge branch 'feature-34-test_framework' into develop
2016-01-13 16:41:45 +01:00
Rohit Gupta
275e03e92b
added paramter to override nruns in lte-softmodem test cases
2016-01-13 16:41:04 +01:00
Rohit Gupta
8358273831
update for using UHD version 3.9.2
2016-01-13 16:25:29 +01:00
lukashov
e2d13c9762
Revert "Experimanetal change in dlsch_channel_commensation_TM34. Will not work for more than 2 antennas."
...
This reverts commit cbd30e62fa .
2016-01-13 14:43:47 +01:00
lukashov
aaccaf9796
Revert ":q#"
...
This reverts commit 83324945ad , reversing
changes made to cbd30e62fa .
2016-01-13 14:43:16 +01:00
lukashov
83324945ad
:q#
2016-01-13 12:46:40 +01:00
lukashov
cbd30e62fa
Experimanetal change in dlsch_channel_commensation_TM34. Will not work for more than 2 antennas.
...
Testing.
2016-01-13 12:17:29 +01:00
Rohit Gupta
c78eb45974
Merge branch 'develop' into feature-34-test_framework
2016-01-12 19:36:43 +01:00
Rohit Gupta
03fc15f82d
default flags for deadline scheduler for different RF targets
2016-01-12 19:35:47 +01:00
Rohit Gupta
1b6407d746
fixes to reset USB bus for bandrich UE
2016-01-12 19:13:50 +01:00
Xenofon Foukas
22d0f60e12
Added support for creation of SR protocol messages and defined initial MAC-Agent interface
2016-01-12 18:08:57 +02:00
Xenofon Foukas
694a5bb1b5
Changed the function signature for handling the packing of protocol messages
2016-01-12 18:03:38 +02:00
Cedric Roux
1b81331195
Merge branch 'hotfix-72-external-packages' into develop
2016-01-12 17:00:33 +01:00
Xenofon Foukas
a8dabcefea
Added support for UL SR info type in the header of progRAN messages
2016-01-12 17:58:09 +02:00
Cedric Roux
4889871084
remove phpmyadmin from the installed additional tools
2016-01-12 16:43:41 +01:00
Cedric Roux
cd34b4499b
put back logs for asn1c installation
2016-01-12 16:34:25 +01:00
Florian Kaltenberger
9dfa3c9449
small fix for mbmssim (a previous commit enabled XFORMS by default, which was not up to date in mbmssim)
2016-01-12 13:46:57 +01:00
Xenofon Foukas
3ce2ba4e5d
Added support for scheduling requests messages
2016-01-12 14:24:31 +02:00
Navid Nikaein
72ff627a12
add eNB configuration parameters for the fronthaul
2016-01-12 10:32:48 +01:00
Cedric Roux
765bd6df6f
Remove redirection to a log file of some functions in cmake_targets/tools/build_helper
...
because 'apt-get' may trigger interactive sessions.
2016-01-12 09:44:01 +01:00
lukashov
432a889cc0
Stupid check if do not divide by 2 the aver level
2016-01-11 16:27:58 +01:00
Rohit Gupta
c2e58bcf68
enable printing of test results in Gitlab
2016-01-11 16:25:31 +01:00
Raymond Knopp
bd7ec70c2b
changes from fourmi
2016-01-11 16:17:08 +01:00
lukashov
5e1e8a58a7
Fixing previous commit
2016-01-11 16:12:21 +01:00
Rohit Gupta
20eb8dc648
Merge branch 'develop' into feature-34-test_framework
2016-01-11 16:09:42 +01:00
lukashov
e5a94ee6dd
Exchanging rho for thr first stream and for the second in qpsk_qpsk_llr
2016-01-11 16:04:10 +01:00
lukashov
42eeb9d65e
New attempt to scale IA receiver
2016-01-11 15:53:13 +01:00
lukashov
e4dec0771c
Another change for aver level: now log2aaprox(ch11/2) + log2approx(ch21/2) -13 +shift
2016-01-11 15:04:03 +01:00
Xenofon Foukas
a9a67824dd
Added API functions for eNB agent - technology interaction
2016-01-11 14:58:31 +02:00
lukashov
388452f1bc
For in demodulation TM4 trying average as a sum of energy in both antennas.
...
Changing names of output files in dlsim respectiively.
2016-01-11 11:10:04 +01:00
Florian Kaltenberger
1d390bd4da
Merge branch 'hotfix-71-freq_channel' into 'develop'
...
Hotfix 71 freq channel
only affects dlsim, which has been tested by Elena
See merge request !12
2016-01-09 15:09:00 +01:00
lukashov
73382b8284
Validating abstraction.c with a hotfix.
2016-01-08 16:54:06 +01:00
lukashov
a5f9c92507
Merge remote-tracking branch 'origin/hotfix-71-freq_channel' into feature-59-tm4
...
Conflicts:
openair1/PHY/TOOLS/cdot_prod.c
targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.band7.usrpb210.conf
2016-01-08 16:33:14 +01:00
lukashov
d0fac35f68
Preparing to merge with hotfix-71-freq_channel, running with old version of abstrcation.c
2016-01-08 16:13:09 +01:00
lukashov
bbb369a937
Small bugfix for TM5 and TM6
2016-01-08 15:53:41 +01:00
Florian Kaltenberger
f0982d3147
small performance improvements for perfect channel estimation in dlsim
2016-01-08 15:44:52 +01:00
lukashov
42eb48faa7
Fixing previous commit: messed up with parenthesis in dlsch_demodulation.c
2016-01-08 15:32:53 +01:00
Xenofon Foukas
2ef32ad9bc
Added support for turning off periodical timer tasks
2016-01-08 15:59:24 +02:00
Florian Kaltenberger
6011553117
fixing issue 71 (bug in freq_channel)
2016-01-08 12:02:42 +01:00
Xenofon Foukas
3e2adfbcbc
Fixed bug to allocate memory in the stack instead of dynamically for the timer search key
2016-01-08 12:53:34 +02:00
Raymond Knopp
ee1d0d56ad
added noise-figure trace in stats.
2016-01-07 17:38:56 +01:00
Raymond Knopp
3007400bfa
autodetection of UHD version for gain/bw scaling prior to 3.9.2
2016-01-07 17:24:25 +01:00
Xenofon Foukas
11b2f82936
Integrated timer to work with periodic report messages and agent tasks
2016-01-07 17:41:51 +02:00
lukashov
b80a6660bf
Some more clean up in dlsch_demodulation.c
2016-01-07 13:50:45 +01:00
lukashov
3521765b62
Changes:
...
1. Fixing a bug in dlsch_channel_level_TM56.
avg128D = _mm_setzero_si128() must be done inside the rx_antennas loop and not before
2. Cleaning up code in dlsch_demodulation.c
3. Offsets for TM5 and TM6 still must be validated.
4. Right now IA and I-UA receivers for TM4 have the same offset -
validate if any additional penalty/gain is needed.
5. Shortened file names in dlsim.c since matlab can read only 63-characters file names.
6. Tested: TM4 U2 -gS perfect CE works fine for EESM and MIESM abstraction (MCS 4 MSE= 0.007 dB on both streams).
2016-01-07 11:47:14 +01:00
Raymond Knopp
54a21b633d
forgot to add lte_param_init.c
2016-01-07 10:57:10 +01:00
kaltenbe
3050a47564
Merge branch 'feature-38-bladerf' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-38-bladerf
...
Conflicts:
targets/ARCH/BLADERF/USERSPACE/LIB/bladerf_lib.c
2016-01-07 10:40:34 +01:00
Xenofon Foukas
e88779c4ef
Added support for lightweight finegrained task timer
2016-01-06 18:06:48 +02:00
gauthier
574399fa43
some formatting changes in physcope for eNodeB. fixes for joint SR/ACK-NAK detection.
2016-01-06 16:33:04 +01:00
Xenofon Foukas
e78075e831
Integrated task manager with system frame and subframe clock and added support for one task queue per eNB
2016-01-06 16:22:59 +02:00
lukashov
80cb191214
Now channel-level dependent part of log2_approx works properly.
...
Validating mcs-dependent shift.
2016-01-06 13:07:10 +01:00
gauthier
e44146b708
handling of timing advance is improved. MAC retrieves timing advance from phy once prior to DL scheduling and clears the statistic in PHY. A timer for controlling the timing advance periodicity was introduced.
2016-01-06 11:37:26 +01:00
Xenofon Foukas
e0c459be75
Changed handlers not to require the xid in their signature. Containted in the received message, or generated in them
2016-01-06 11:57:03 +02:00
lukashov
3262bfa66e
Fixing dlsch_channel_level_TM34.
...
Passing 2 avrage channel lvel and not max how it was done before.
Continuing with calibration.
2016-01-06 10:38:47 +01:00
Xenofon Foukas
3bc88cfd11
Fixed agent to support proper frame and subframe reporting in progRAN messages
2016-01-05 21:52:05 +02:00
Xenofon Foukas
99cf3b654a
Added functions to get the current frame and subframe
2016-01-05 21:30:55 +02:00
lukashov
4031335617
Changing names of the files in dlsim.c
2016-01-05 20:24:12 +01:00
Navid Nikaein
f2f0e68f9d
Fix the bug in the RB tree, and sanity test for the timer API
2016-01-05 19:26:45 +01:00
lukashov
7a8e3a421c
Commit to compare -u0 and -u2 performance in interference free environment for
...
TM4 and verify if any additional gain/penatly is needed.
2016-01-05 15:27:15 +01:00
Xenofon Foukas
f7d591f150
Created task manager support for agent messages in the for of a priority queue
2016-01-05 13:57:52 +02:00
gauthier
83e48d39ca
Merge branch 'develop' into Feature-6-fix_test_core_network_with_scenarios
...
Conflicts:
cmake_targets/tools/build_helper
2016-01-05 12:08:13 +01:00
gauthier
b14a2212fd
Correct timming issues
2016-01-05 11:38:39 +01:00
Navid Nikaein
1f213b0b8e
* add options to enb configuration file for the enb agent
...
* add timer api for the periodic and oneshot operations
* create enb agent task
2016-01-05 11:33:40 +01:00
lukashov
73c76d1456
Small changes in dataout file names.
2016-01-05 11:11:35 +01:00
lukashov
fa64a12850
Applying channel scaling for TM4, playing with log2approx in demodulation
2016-01-05 00:25:23 +01:00
lukashov
ef3991d461
Minor change in dlsch_demod.
2016-01-04 16:58:32 +01:00
lukashov
6e839bf82c
Minor change in dlsim.c
2016-01-04 15:31:49 +01:00
lukashov
404814f706
In demod removing -13 to play with absolute value of shift
2016-01-04 15:30:02 +01:00
lukashov
eeaf2c1596
Cleaning up some comments
2016-01-04 14:54:13 +01:00
lukashov
fe702e469d
Minor change in dlsch_demod
2016-01-04 14:37:26 +01:00
lukashov
170291413d
Going back to fixed shift in log2_approx for TM4. Playing with computing the channel average in order to find optimal shift.
2016-01-04 14:33:01 +01:00
Raymond Knopp
8d4405bddf
added avx2 optimized turbo decoder for 16-bit LLR. This decoder parallelizes by decoding 2 code segments concurrently. requires updates dlsch_decoding.c to identify when new parallel version can be used. other minor changes related to memory allocations for future avx2 optimizations (32-byte alignment).
2016-01-03 15:15:26 -08:00
Navid Nikaein
48ddbc6805
Merge branch 'feature-68-enb-agent' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-68-enb-agent
2016-01-01 20:06:55 +01:00
Navid Nikaein
e42dd36967
update the itti timer
2016-01-01 20:05:15 +01:00
Raymond Knopp
27b1707ed1
AVX2 updates to turbo encoder interleaver. Also speedup in RSC encoder. 40% speedup improvement.
2016-01-01 05:51:09 -08:00
Rohit Gupta
d0859595b8
always do a cleanup before starting test case execution
2015-12-31 15:21:04 +01:00
Rohit Gupta
92bafd2887
cleanup + comments on code
2015-12-31 15:13:33 +01:00
Rohit Gupta
b212daa4d3
doxygen support for BladeRF - PHY Interface
2015-12-31 09:48:26 +01:00
Rohit Gupta
8e1b5d26d4
doxygen support for USRP PHY Interface
2015-12-31 09:06:10 +01:00
Rohit Gupta
51942ab13c
added doxygen support to main script
2015-12-31 07:25:45 +01:00
Rohit Gupta
0699cb07be
removed display of arguments
2015-12-31 07:05:12 +01:00
Rohit Gupta
020f08b37d
fixed to support doxygen
2015-12-30 21:45:34 +01:00
Rohit Gupta
7290a7d963
Merge branch 'develop' into feature-42-doxygen
2015-12-30 20:30:28 +01:00
Rohit Gupta
77be649fd3
enable deadline scheduler in build script
2015-12-30 20:27:49 +01:00
Rohit Gupta
44e0e91949
run script with python interpreter
2015-12-30 15:44:51 +01:00
Rohit Gupta
a1c76d163c
make log directory to store logs
2015-12-30 15:37:08 +01:00
Rohit Gupta
e639a5dafe
run python script as an executable
2015-12-30 15:24:23 +01:00
Rohit Gupta
c023871805
test for arguments passing in GitLab CI runner
2015-12-30 15:20:40 +01:00
Rohit Gupta
ba40449aab
update to make python script executable
2015-12-30 15:13:16 +01:00
Rohit Gupta
5ee5ed37ad
temp removed amerique due to conn issues
2015-12-30 14:05:53 +01:00
Rohit Gupta
201e033a10
updates to display args in python autotest script
2015-12-30 13:57:42 +01:00
Rohit Gupta
24d41580ee
printing of OAI_EXTRA_ARGS
2015-12-30 13:39:02 +01:00
Rohit Gupta
074eeda1f8
minor fix for init variable for machinelistGeneric
2015-12-30 13:33:02 +01:00
Rohit Gupta
62cf1be861
added option for OAI_EXTRA_ARGS from GiLab CI environment
2015-12-30 13:23:40 +01:00
Rohit Gupta
daa63cdda2
Merge branch 'feature-34-test_framework' of gitlab.eurecom.fr:oai/openairinterface5g into feature-34-test_framework
2015-12-30 13:15:21 +01:00
Rohit Gupta
a6099ff46f
fix for rsync script
2015-12-30 13:07:55 +01:00
Rohit Gupta
5fab5dc799
fixes for BLADERF test case tag + addition of amerique
2015-12-30 13:03:47 +01:00
Rohit Gupta
ffc468e5df
bugfixes for intergration with GitLabCI
2015-12-30 13:00:25 +01:00
Raymond Knopp
09e354a240
tested 23.04 Ms/s sampling for 20 MHz on USRP B210, modifications in usrp_lib.cpp.
2015-12-30 11:49:21 +01:00
Raymond Knopp
f53df3521f
added 23.04 Ms/s sampling option to lte-softmodem (under test)
2015-12-30 09:53:48 +01:00
Rohit Gupta
91c43fa2ea
updates for terminating program after fatal SSH Errors
2015-12-29 20:49:11 +01:00
Rohit Gupta
959f13e1e7
minor bugfix related to cleanup script
2015-12-29 20:41:43 +01:00
Raymond Knopp
7f53f84c00
Tested modifications for 23.04 Ms/s 100 PRB transmission/reception (Downlink). This will reduce I/Q acquisition times for 20 MHz channels. new option in dlsim (-E) for testing 1536-point DFT instead of 2048 for this lower sampling rate. Added normalization to idft1536. Should also be added to dft1536 later.
2015-12-29 20:34:47 +01:00
Raymond Knopp
7f2dd71e68
Merge remote-tracking branch 'origin' into enhancement-57-UHD-interfacing
2015-12-29 20:29:47 +01:00
Raymond Knopp
93bf163071
commit prior to merge with develop
2015-12-29 20:29:26 +01:00
Rohit Gupta
1bcdc974aa
Merge branch 'feature-34-test_framework' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-34-test_framework
2015-12-29 20:19:10 +01:00
Rohit Gupta
cff6c95afb
minor bug due to cleaning of old programs
2015-12-29 20:19:07 +01:00
Rohit Gupta
7be87a27ba
added option for rsync to create remote share if it does not exist
2015-12-29 20:05:26 +01:00
Rohit Gupta
d39f218215
added extra options for setting NFS SHARE
2015-12-29 19:38:57 +01:00
Rohit Gupta
dc020be2c4
added argument for passing GIT HEAD commit
2015-12-29 19:16:40 +01:00
Rohit Gupta
a3ab1a90f5
minor bugfixes due to runtime errors
2015-12-29 19:01:52 +01:00
Rohit Gupta
3c455f7d38
minor bugfix for paramiko logfile
2015-12-29 18:33:50 +01:00
Rohit Gupta
38ca126cdc
fixed a minor bug for python execution
2015-12-29 17:03:57 +01:00
Rohit Gupta
1fc405ddc8
updates to integrate with GitLab CI
2015-12-29 16:55:36 +01:00
Rohit Gupta
3bdbb91796
added sudo for ALU LTEBox
2015-12-29 16:44:19 +01:00
Rohit Gupta
945f9c07b6
added sshpass for GitLab CI support
2015-12-29 16:43:07 +01:00
Rohit Gupta
69a3d14432
test for Gitlab CI
2015-12-29 15:15:09 +01:00
Xenofon Foukas
e5e58ec2f4
Fixed mac stats handler for periodic and continuous stats updates
2015-12-29 15:43:42 +02:00
Rohit Gupta
9b93e9836e
test for Gitlab CI
2015-12-29 14:39:33 +01:00
Rohit Gupta
6087394eaf
test for Gitlab CI
2015-12-29 14:31:07 +01:00
Rohit Gupta
02c4317aaf
test for Gitlab CI
2015-12-29 14:21:17 +01:00
Rohit Gupta
826ef8dafb
test for Gitlab CI
2015-12-29 14:10:21 +01:00
Rohit Gupta
c6cb903c42
Gitlab CI test for branch
2015-12-28 21:51:01 +01:00
Rohit Gupta
8724c5062f
Gitlab CI test for branch
2015-12-28 21:44:24 +01:00
Rohit Gupta
cf3e75fb5a
test Gitlab CI for branch
2015-12-28 21:40:40 +01:00
Rohit Gupta
e6321929c6
test GiLab runner for gitlab branch
2015-12-28 21:32:39 +01:00
Rohit Gupta
3015eba1b2
gitlab CI test for custom environment variables
2015-12-28 20:25:51 +01:00
Rohit Gupta
dc32904bb1
gitlab CI update for testing username
2015-12-28 20:22:15 +01:00
Rohit Gupta
fdaed481c3
added root file Gitlab CI
2015-12-28 19:00:14 +01:00
Rohit Gupta
5a80a8cb1f
bugfixes to autotest framework
2015-12-28 16:34:49 +01:00
Rohit Gupta
0046ed5d60
disable lowlatency by default
2015-12-28 16:33:50 +01:00
Xenofon Foukas
b9cf840a10
Created callback mechanism for destruction of protocol messages sent by the agent
2015-12-28 15:25:27 +02:00
Rohit Gupta
7c90db3462
updated to kill iperf_script
2015-12-27 17:08:51 +01:00
Rohit Gupta
918f0069ec
added script for setting openair-cn root path
2015-12-27 16:56:46 +01:00
Rohit Gupta
3985b01076
fixed minor bug in debug message printing
2015-12-27 16:27:23 +01:00
Rohit Gupta
0a9f80bd67
wrapper for iperf scripts
2015-12-27 15:58:15 +01:00
Rohit Gupta
dd2177ecd5
fixed a bug due to wrong conf file
2015-12-27 14:56:07 +01:00
Rohit Gupta
344252d801
Merge branch 'develop' into feature-34-test_framework
2015-12-27 13:17:51 +01:00
Rohit Gupta
95e701097c
Merge branch 'develop'
2015-12-27 13:07:55 +01:00
Rohit Gupta
1bff2ec73a
updates for thoughput tests in test framework
2015-12-27 13:07:04 +01:00
Raymond Knopp
abac3741fc
added BLADERF configuration file for 50PRB
2015-12-27 11:43:37 +01:00
Raymond Knopp
1ff2c0d3f4
Merge branch 'develop' into feature-38-bladerf
...
Conflicts:
targets/RT/USER/lte-softmodem.c
2015-12-27 11:42:41 +01:00
Rohit Gupta
dc3d32db43
Merge branch 'feature-34-test_framework' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-34-test_framework
2015-12-26 00:08:11 +01:00
Rohit Gupta
d3173214eb
updated for using develop branch by default
2015-12-26 00:08:08 +01:00
Raymond Knopp
8da8de7297
fixed bad BLADERF defines (BLADRF), some gain adjustments
2015-12-25 10:08:45 +01:00
Raymond Knopp
596b0fd1c5
Merge branch 'develop', remote-tracking branch 'origin' into feature-38-bladerf
2015-12-25 09:57:51 +01:00
Xenofon Foukas
0bea0aafc4
Restructured statistics handler to consider the request message parameters
2015-12-23 15:29:28 +02:00
Xenofon Foukas
7241aa6a38
Added support for parameters in handlers
2015-12-23 12:17:52 +02:00
aikaterini.trilyraki
a701d18451
minor update
2015-12-22 21:16:46 +01:00
aikaterini.trilyraki
d5a96b2c61
comment address restore
2015-12-22 21:15:52 +01:00
aikaterini.trilyraki
6975efd67a
remove redundant returns
2015-12-22 21:13:37 +01:00
aikaterini.trilyraki
898e2dcd17
initialization in oaisim
2015-12-22 21:12:12 +01:00
Cedric Roux
244699fcfb
Merge branch 'bugfix-69-oai-ue-rach-fix' into develop
2015-12-22 16:35:57 +01:00
gauthier
ea7c5d5e6d
Ok, replay scenario, to be tested with more scenarios
2015-12-22 16:18:51 +01:00
Xenofon Foukas
4f618d6170
Fixed some bugs that would lead to segfaults and modified to support changes in protocol
2015-12-22 17:08:16 +02:00
Xenofon Foukas
d5830ced24
Allow only a single instance of the eNB agent
2015-12-22 17:06:37 +02:00
Xenofon Foukas
915af964f4
Fixed top-level message field msg_dir to be optional
2015-12-22 17:04:18 +02:00
Cedric Roux
3d0a6e4032
fix a bug in dot_product. The return was done before _mm_empty()
2015-12-22 13:28:05 +01:00
gauthier
cf8645d8cd
Limitation of non SI DLSCH allocations in subframe 0/5 to PRBS not around DC (avoid puncturing from PBCH). Placement of SI around DC instead of randomized allocations. Placement of RA allocations at PRB 0-3. Tested DL throughput on 5 MHz to 16 Mbit/s in TM1.
2015-12-21 19:05:28 +01:00
gauthier
a59cabd1dd
Merge branch 'develop' into bugfix-48-L1L2signaling
...
Conflicts:
openair1/SCHED/phy_procedures_lte_eNb.c
targets/PROJECTS/GENERIC-LTE-EPC/CONF/enb.band7.tm1.usrpb210.conf
2015-12-21 18:45:27 +01:00
Cedric Roux
1a931cfae9
this seems to fix the RACH problem
2015-12-21 16:12:05 +01:00
lukashov
9c41f88a56
Improving previuos commit: awgn TM4 for perfect CE.
2015-12-21 12:05:40 +01:00
Navid Nikaein
17251ddaac
Very basic version of the enb agent
2015-12-21 03:36:37 +01:00
Rohit Gupta
3602808af2
updated for checking Git head versions of OAI 5G repo
2015-12-19 18:54:21 +01:00
Rohit Gupta
d37dc40c47
Merge branch 'develop' into feature-34-test_framework
2015-12-19 17:59:36 +01:00
Rohit Gupta
fd880b0374
changed exmimo stop script and reduced UL throughput requirements for test cases to pass
2015-12-19 16:45:16 +01:00
Rohit Gupta
edc338fad7
added lowlatency (SCHED_DEADLINE) option in toplevel build script
2015-12-19 16:44:03 +01:00
Rohit Gupta
d3eebd0666
removed pre-compiled exmimo files as they don't work for different kernel versions
2015-12-19 16:42:38 +01:00
Rohit Gupta
5f7e99760e
added to stop exmimo2
2015-12-19 16:39:56 +01:00
gauthier
64df39d1bf
Sync
2015-12-18 21:11:45 +01:00
aikaterini.trilyraki
5b5a3949e4
minor improvement; device and trasport libraries are included from targets/bin
2015-12-18 17:28:33 +01:00
aikaterini.trilyraki
60f05e0852
remove redundant files from rrh compilaton
2015-12-18 17:27:09 +01:00
Florian Kaltenberger
6f889b30e4
minor changes to be able to load full frame
2015-12-18 17:26:48 +01:00
lukashov
b21b87df28
Fixing perfect channel estimation for TM4
2015-12-18 17:08:21 +01:00
Florian Kaltenberger
e5bcff484c
first version of phy only test
2015-12-18 14:52:45 +01:00
Rohit Gupta
8725038b09
updated ssh wrapper timeout
2015-12-18 05:01:59 +01:00
Rohit Gupta
ec399cd1f8
Merge branch 'feature-34-test_framework' into develop
2015-12-17 18:36:38 +01:00
Rohit Gupta
a364c4fae8
minor bugfix to autotest script
2015-12-17 18:36:11 +01:00
Rohit Gupta
b681ce1b14
fix for sudo execution
2015-12-17 17:58:14 +01:00
Rohit Gupta
0bd704261b
fixes for stopping EXMIMO
2015-12-17 17:38:14 +01:00
gauthier
ed26845480
TODO transport layer address, play scenario max speed
2015-12-17 16:22:08 +01:00
lukashov
e44851306d
1.Fixing a bug with qam tables in dlsch_demodulation.c for tm4.
...
2.Fixing shift LUT for TM1. Mcs 21, 26 and 28 show erroneous performance. (see attachement in commit)
2015-12-17 15:33:27 +01:00
Florian Kaltenberger
789435791c
Merge remote-tracking branch 'origin/feature-26-timing_advanced' into develop
...
Conflicts:
targets/RT/USER/lte-softmodem.c
2015-12-17 15:09:06 +01:00
Florian Kaltenberger
cc0ccc9a91
Merge branch 'bugfix-25' into 'develop'
...
lte-softmodem: fix the wrongly Nid_cell
Make sure that we fetch the cell id from config
file rather than always fix it to 0.
Signed-off-by: Mhd Zaher Mahfouz <zaher@tmrnd.com.my >
Signed-off-by: Chun-Yeow Yeoh <yeow@tmrnd.com.my >
See merge request !1
2015-12-17 15:03:29 +01:00
Florian Kaltenberger
d3c1a34aa8
Merge branch 'bugfix-27' into 'develop'
...
lte-ue: fix the initialization of UE NAS
The NAS UE is not initialized by the UE of lte-softmodem.
Fix this.
Signed-off-by: Chun-Yeow Yeoh <yeow@tmrnd.com.my >
See merge request !3
2015-12-17 15:01:00 +01:00
Florian Kaltenberger
9dd329d842
Merge branch 'hotfix-58-bfly3bug' into 'develop'
...
Applied patch to lte_dfts.c (inline function cmacc for x86) to correct bug in ibfly3
See merge request !7
2015-12-17 14:52:31 +01:00
Rohit Gupta
69e10a76c3
fixed rx gain settings for USRP B210
2015-12-17 13:05:11 +01:00
Rohit Gupta
7d5e498340
Merge branch 'enhancement-57-UHD-interfacing' into develop
2015-12-17 12:50:20 +01:00
Xenofon Foukas
0dee574c57
Changed prp_stats_reply message to support multiple UE and cell reports
2015-12-17 11:37:18 +02:00
gauthier
b0a54d8c7e
fix of PUCCH statistic tracking with signal scope
2015-12-17 09:44:38 +01:00
gauthier
f5a7184185
Merge branch 'bugfix-48-L1L2signaling' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/proto.h
2015-12-16 17:26:12 +01:00
Navid Nikaein
988b483ab0
* automatic generation of protobuf messages in CMakeList.txt
2015-12-16 16:53:37 +01:00
lukashov
513ed46e56
Calibrating offset for TM1 and introducing LUT interf_unaw_shift_tm1_mcs. LUT valid for mcs<=13,
...
to be completed in the next commit.
2015-12-16 15:46:56 +01:00
Navid Nikaein
bd1de293c6
Merge branch 'feature-68-enb-agent' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-68-enb-agent
2015-12-16 15:43:10 +01:00
lukashov
877d7b3bf9
Fixing global shifts
2015-12-16 13:43:50 +01:00
lukashov
1673ba3dfb
Fix global var for shift
2015-12-16 12:51:43 +01:00
Navid Nikaein
183e105f87
update CMakeLists--generate .c files for protobufs
2015-12-16 11:58:48 +01:00
gauthier
ede2152862
Merge branch 'develop' into bugfix-48-L1L2signaling
...
Conflicts:
targets/ARCH/COMMON/common_lib.c
targets/RT/USER/lte-softmodem.c
2015-12-16 11:12:28 +01:00
Rohit Gupta
addaeffbeb
Merge branch 'develop' into enhancement-57-UHD-interfacing
2015-12-16 10:52:00 +01:00
Rohit Gupta
9fd7411f0b
Merge branch 'develop' into feature-34-test_framework
2015-12-16 10:51:35 +01:00
Rohit Gupta
e3df941210
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2015-12-16 10:46:05 +01:00
Rohit Gupta
2ad43fcb06
Merge branch 'develop' into enhancement-57-UHD-interfacing
2015-12-16 10:44:59 +01:00
Rohit Gupta
f09919073b
Merge branch 'feature-34-test_framework' into develop
2015-12-16 10:44:04 +01:00
Rohit Gupta
84369624f3
minor update for default test branch
2015-12-16 10:42:38 +01:00
gauthier
9eac7ac6ff
fixed TX/RX timing for B210 5 MHz
2015-12-16 09:06:50 +01:00
lukashov
d6503bdd47
typo
2015-12-15 23:21:13 +01:00
lukashov
c2460ee36a
Verifying if offset LUT for TM4 works for TM1. -J is responsible for shift.
2015-12-15 23:14:08 +01:00
Xenofon Foukas
5f1f1abe3f
Added header in messages and removed length field
2015-12-15 22:47:08 +02:00
Navid Nikaein
694718963a
* script for automatic generation of protobug messages
2015-12-15 19:46:52 +01:00
Navid Nikaein
7ccf7a917f
* add protobuf messages and compliation directives
2015-12-15 19:44:12 +01:00
gauthier
cc4286f27b
sync
2015-12-15 16:56:55 +01:00
lukashov
51af1a19f0
Now BLER goes to 10^(-2) in case of abstraction and 10^-3 in regular mode.
2015-12-15 16:09:53 +01:00
lukashov
2b41586884
Introducing different shifts for channel compensation log2_maxh0 and log2_maxh1 as well as mcs-dependent offset coefficients interf_unaw_shift_mcs
...
for I-UA receiver and interference-free case TM4. Coeeficients for 64 QAM must be revised.
2015-12-15 15:57:45 +01:00
Florian Kaltenberger
014d7033a3
minor changes:
...
- added -a option to lte-softmodem for easier testing of different RF chains
- added $OPENAIR_TARGETS/bin to path for easier access to init scripts
2015-12-15 14:18:13 +01:00
Florian Kaltenberger
fb6498dd32
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2015-12-15 14:06:19 +01:00
Florian Kaltenberger
6098a60e0d
Merge branch 'enhancement-60-exmimo-tdd' into develop
2015-12-15 14:00:26 +01:00
gauthier
3e3bdd9ef2
Removed from this repo epc xsl files, commiting for sync
2015-12-15 13:19:00 +01:00
Cedric Roux
a1ad30449e
Merge branch 'bugfix-56-UE_category3_throughput' into develop
2015-12-15 13:01:46 +01:00
Cedric Roux
96a27021b3
Merge branch 'develop' into bugfix-56-UE_category3_throughput
...
Conflicts:
cmake_targets/autotests/test_case_list.xml
2015-12-15 13:01:12 +01:00
Navid Nikaein
5c0098e2f0
* add async interface support for eNB agent and create a lib
2015-12-15 11:53:47 +01:00
Rohit Gupta
7b954dacda
commits to exclude certain tests + increase number of runs + duration of test cases
2015-12-15 11:41:32 +01:00
Rohit Gupta
3ae32f4dd4
Merge branch 'develop' into feature-34-test_framework
2015-12-15 10:14:12 +01:00
Rohit Gupta
37d7fa8d30
Merge branch 'feature-34-test_framework' into develop
2015-12-15 10:13:50 +01:00
Rohit Gupta
ddbb7f4174
updated with some errors in tags
2015-12-15 10:13:17 +01:00
lukashov
7ad4dcd3a1
Changing the level of target BLER on dlsim.c
2015-12-14 19:07:23 +01:00
lukashov
05fd086418
Introducing an offset for I-UA receiver intefr_unaw_shift and calibrating this value for each mcs (u=0 only).
2015-12-14 19:01:29 +01:00
Rohit Gupta
7df4599056
Merge branch 'develop' into enhancement-60-exmimo-tdd
2015-12-14 18:50:47 +01:00
Rohit Gupta
8a28f09c12
Merge branch 'feature-34-test_framework' into develop
2015-12-14 18:50:26 +01:00
Rohit Gupta
cc63eb9a38
updated for excluding test cases that do not work
2015-12-14 18:49:59 +01:00
Rohit Gupta
b085d57710
Merge branch 'develop' into enhancement-60-exmimo-tdd
2015-12-14 18:37:00 +01:00
Rohit Gupta
d7fb4fa8de
Merge branch 'feature-34-test_framework' into develop
2015-12-14 18:35:35 +01:00
Rohit Gupta
40c6803004
merge changes from bugfix-56-UE_category3_throughput
2015-12-14 18:35:00 +01:00
Rohit Gupta
40f242094f
modified due to compilation error
2015-12-14 16:38:10 +01:00
Rohit Gupta
fa3c5e14f1
disabled low latency option for bladerf
2015-12-14 16:37:31 +01:00
gauthier
0b5e364b73
Merge branch 'develop' into Feature-6-fix_test_core_network_with_scenarios
2015-12-14 16:27:16 +01:00
lukashov
0d9f417f7b
Small changes in dlsch_demodulation.c and in dlsim.c condition to stop simulation depending on rx_type.
...
dr_offset must be calibrated for tm4 again.
2015-12-14 12:32:52 +01:00
Raymond Knopp
1e08469ed8
conversion of some sse4 code to avx2 for turbo encoder. No noticeable improvement (output expansion for encoder doesn't benefit much because of unpack instruction difference on AVX2.
...
maxh adjustement in dlsch_demodulation (to be checked further for other mcs)
exit criterion in dlsim to allow estimation of lower BLER.
2015-12-14 01:51:26 -08:00
Raymond Knopp
5dbe3bef51
debugging and testing of AVX2-optimized DFTS (radix 2/4 only).
2015-12-13 07:57:04 -08:00
Rohit Gupta
94cd24985a
updated for EXMIMO/X310 kernel module insertion
2015-12-11 18:26:56 +01:00
Rohit Gupta
7c48a0f999
updated N_RB_DL to 25
2015-12-10 16:18:25 +01:00
lukashov
20a6f9785b
Small changes for writing precoder in data_out file.
...
Please note that to test precoder it is necessary to run Perfect_CE
2015-12-10 13:12:00 +01:00
Rohit Gupta
64e37d05a7
fixed xml file for configuration params
2015-12-10 11:58:48 +01:00
lukashov
d765d1f2ab
Fixing previous commit
2015-12-09 15:27:50 +01:00
lukashov
9695420fce
Merge branch 'develop' into feature-59-tm4
...
Conflicts:
openair1/SIMULATION/LTE_PHY/dlsim.c
openair1/SIMULATION/TOOLS/random_channel.c
2015-12-09 13:55:20 +01:00
Rohit Gupta
0363845473
Merge branch 'develop' into bugfix-56-UE_category3_throughput
2015-12-08 18:53:54 +01:00
Rohit Gupta
85710d246e
Merge branch 'feature-34-test_framework' into develop
2015-12-08 18:53:17 +01:00
Rohit Gupta
0dc471d23b
removed TM 5,6 test cases
2015-12-08 18:52:49 +01:00
Rohit Gupta
7994f02f8e
Merge branch 'develop' into bugfix-56-UE_category3_throughput
2015-12-08 18:42:25 +01:00
Rohit Gupta
e63fafd580
Merge branch 'develop' into feature-34-test_framework
2015-12-08 18:40:59 +01:00
Rohit Gupta
68b44452a7
Merge branch 'feature-34-test_framework' into develop
2015-12-08 18:39:57 +01:00
Rohit Gupta
854d183dd9
addition of tests for x310/EXMIMO
2015-12-08 18:38:57 +01:00
lukashov
7f34328b24
Changes:
...
1. Fixing precoder selection criteria for TM4 for tpmi2.
TPMI 2 works now.
2. Temporarily replacing abstraction.c with an old version till fix the bug in init_freq_channel.
3. Commenting some extra printouts.
2015-12-08 16:18:44 +01:00
gauthier
1b86363795
Remaining TODO: handle diff MME_UE_S1AP_ID, asn1c compare not tested
2015-12-08 15:08:02 +01:00
Rohit Gupta
874ed6fd8d
fixed iperf settings for lte-softmodem tests
2015-12-08 11:39:07 +01:00
Rohit Gupta
958738477c
minor updates to the autotest launch script
2015-12-08 10:31:32 +01:00
Rohit Gupta
6f9a17cbab
Merge branch 'develop' into feature-34-test_framework
2015-12-07 19:25:39 +01:00
Rohit Gupta
2eaafd8d8e
bugfixes to test framework
2015-12-07 19:24:51 +01:00
Rohit Gupta
feae43f81f
reduced ping to just 5 packets
2015-12-07 13:07:27 +01:00
Cedric Roux
7290d1bc89
Merge branch 'develop' into bugfix-56-UE_category3_throughput
2015-12-07 12:08:20 +01:00
Rohit Gupta
85d0a88e30
updated autotest xml for always clean compile
2015-12-07 10:54:16 +01:00
Rohit Gupta
e3a8e68e78
Merge branch 'feature-34-test_framework' into develop
2015-12-06 23:21:02 +01:00
Rohit Gupta
ef498d78b1
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2015-12-06 23:12:26 +01:00
Rohit Gupta
d7e31be913
updates to autotest framework
2015-12-06 23:11:01 +01:00
Rohit Gupta
707e6798c3
bugfixes to test framework
2015-12-06 13:32:19 +01:00
Raymond Knopp
47a6fa6efd
Merge branch 'develop' into enhancement-43-AVX2
2015-12-05 02:44:33 -08:00
Raymond Knopp
301d846f7d
Merge branch 'master' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2015-12-05 02:43:02 -08:00
Raymond Knopp
dfbd4058ba
Merge remote-tracking branch 'origin' into enhancement-43-AVX2
2015-12-05 02:39:22 -08:00
Raymond Knopp
cb0eabe7df
updated unitary simulations for new CCE interfaces. Cleaned up warnings in dlsim/pdcchsim/ulsim.
2015-12-05 02:28:21 -08:00
Rohit Gupta
d687b89d9d
update to the bandrich UE config
2015-12-04 21:19:27 +01:00
Rohit Gupta
a9e65743ea
updated UE config script
2015-12-04 21:05:49 +01:00
Rohit Gupta
d1a7df8662
update to the bandrich UE config
2015-12-04 19:55:26 +01:00
lukashov
790ba35688
one more bug in measurements
2015-12-04 19:04:59 +01:00
lukashov
6df0e46245
Fixed bug in lte_ue_measurements.c for subband pmi calculation
2015-12-04 18:28:12 +01:00
Rohit Gupta
8438d5aa5a
update to UE config script
2015-12-04 18:24:40 +01:00
Rohit Gupta
2ca52aaf7b
updated script for UE configuration
2015-12-04 17:17:41 +01:00
gauthier
afa23c829b
Timings seems to be OK, (to be checked more accurately)
2015-12-04 16:12:49 +01:00
Rohit Gupta
008ccf04c7
updated autotest framework for lte-softmodem
2015-12-04 15:48:57 +01:00
Rohit Gupta
3422a591a8
updated for additional packages for autotest framework
2015-12-04 15:40:18 +01:00
Rohit Gupta
f1304ee26f
updated for completely putting UE in airplane mode
2015-12-04 15:37:48 +01:00
lukashov
55c1f58192
Fixing prec2A_TM4_128 in dlsch_demodulation.c
2015-12-04 11:54:42 +01:00
Rohit Gupta
d1bed3975e
Merge branch 'enhancement-57-UHD-interfacing' into develop
2015-12-04 11:38:36 +01:00
Rohit Gupta
6d87c8ba3f
Merge branch 'develop' into enhancement-57-UHD-interfacing
2015-12-04 11:38:07 +01:00
gauthier
e547fa8724
Able to begin replay a scenario...debug needed
2015-12-04 11:16:47 +01:00
Cedric Roux
a31432e37e
some cleanup
2015-12-04 09:15:08 +01:00
Rohit Gupta
0aeb77ce98
updates to test framework + bugfixes
2015-12-03 20:54:47 +01:00
Raymond Knopp
d5d597746a
bugfix for UE TX on USRP
2015-12-02 18:26:11 +01:00
Rohit Gupta
b9ac3a9b44
updated eNodeB calibration for B210 target
2015-12-02 17:55:04 +01:00
Florian Kaltenberger
d56adbf3c1
Merge branch 'feature-59-tm4' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-59-tm4
2015-12-02 15:59:15 +01:00
Florian Kaltenberger
7d27d45d02
few more fixes
2015-12-02 15:57:25 +01:00
lukashov
8d85ca9c78
fixed cor matrix for tpmi=1, -gR works now
2015-12-02 14:28:30 +01:00
Rohit Gupta
6e1e41db8a
updated to remove SSE4.2 flags as they are not used
2015-12-02 13:40:39 +01:00
gauthier
8a001c57bc
Backup, need to feed with packets, still patch for asn1c to be comited
2015-12-02 13:04:21 +01:00
Florian Kaltenberger
cce0b45f97
a few small bugfixes, but not yet finished
2015-12-02 13:02:45 +01:00
gauthier
44355e1a73
Receiving setupresponse success, TBC
2015-12-02 11:26:21 +01:00
Florian Kaltenberger
e24847b130
fixing last commit
2015-12-02 11:25:16 +01:00
Florian Kaltenberger
992b32a969
Merge branch 'feature-59-tm4' of https://gitlab.eurecom.fr/oai/openairinterface5g into feature-59-tm4
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/proto.h
2015-12-02 11:15:26 +01:00
Florian Kaltenberger
6143779c63
documentation
2015-12-02 11:13:47 +01:00
lukashov
0c5a731f23
Merge branch 'feature-59-tm4' of gitlab.eurecom.fr:oai/openairinterface5g into feature-59-tm4
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/dci_tools.c
2015-12-02 11:11:23 +01:00
lukashov
11dc7d2b81
extension to tmpi 2 for TM4
2015-12-02 11:04:00 +01:00
Cedric Roux
f630fc5863
Merge branch 'develop' into bugfix-56-UE_category3_throughput
2015-12-02 08:38:10 +01:00
Raymond Knopp
1328aca790
fixed compilation issues with UHD
2015-12-01 20:36:58 +01:00
Rohit Gupta
4d000a6e8e
update for sudo check
2015-12-01 19:53:15 +01:00
Raymond Knopp
1396d22d42
minor changes in openair_device structure (naming of fields), calibration information for X310 timing, some initializations from lte-softmodem.c for USRP moved to usrp_lib.cpp
2015-12-01 10:44:52 -08:00
Rohit Gupta
25b3eeb440
updated sudo detection
2015-12-01 19:09:37 +01:00
gauthier
610e07a96c
For backup only, dont compile, TODO missing patch for asn1c compiler
2015-12-01 16:55:41 +01:00
Rohit Gupta
2a9a915961
updates for parallel execution to test case framework
2015-11-30 18:55:16 +01:00
Florian Kaltenberger
000e60c193
extrac_cqi translates pmi_dual into pmi_single
2015-11-30 16:58:08 +01:00
Xiwen JIANG
1096744662
cell specific beamforming weights adaption nb of tx antennas
2015-11-30 15:31:33 +01:00
Xiwen JIANG
bed11c711e
dlsch data extraction bug fixed for special subframes in TM7
2015-11-30 15:29:10 +01:00
Rohit Gupta
34b61a1a53
updated test case architecture for parallel/faster execution
2015-11-29 22:52:49 +01:00
Raymond Knopp
777ba9491b
Merge branch 'enhancement-43-AVX2' of https://gitlab.eurecom.fr/oai/openairinterface5g into enhancement-43-AVX2
2015-11-29 13:09:02 -08:00
Raymond Knopp
11cfa5ba76
brought in AVX2 modifications from svn repository on openair1/PHY/TOOLS/lte-dfts.c
2015-11-29 13:08:08 -08:00
Rohit Gupta
d897ea3e75
improved logging in build helper and fixed a minor bug in installation
2015-11-29 20:04:26 +01:00
Raymond Knopp
1fc396f57d
Merge after bad rebase
...
Merge branch 'bugfix-48-L1L2signaling' of https://gitlab.eurecom.fr/oai/openairinterface5g into bugfix-48-L1L2signaling
Conflicts:
openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
openair1/SCHED/phy_procedures_lte_ue.c
openair2/LAYER2/MAC/eNB_scheduler.c
openair2/LAYER2/MAC/eNB_scheduler_RA.c
openair2/LAYER2/MAC/eNB_scheduler_bch.c
openair2/LAYER2/MAC/eNB_scheduler_dlsch.c
openair2/LAYER2/MAC/eNB_scheduler_primitives.c
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
openair2/LAYER2/MAC/proto.h
openair2/PHY_INTERFACE/defs.h
2015-11-29 01:06:14 -08:00
Raymond Knopp
f48d10ba3e
Added DLSCH scheduling for subframes 0 and 5. Changes in MAC scheduling data structure to keep track of VRB allocations from SI,RA when scheduling regular DLSCH
2015-11-29 00:37:04 -08:00
Rohit Gupta
14bd5bcffd
Merge branch 'develop' into feature-34-test_framework
2015-11-28 22:19:01 +01:00
Rohit Gupta
e070050d13
added files for autotest framework
2015-11-28 22:18:17 +01:00
Rohit Gupta
03595b40a2
added files for autotest framework
2015-11-28 22:18:07 +01:00
Rohit Gupta
7f296274be
Merge branch 'develop' of https://gitlab.eurecom.fr/oai/openairinterface5g into develop
2015-11-28 22:10:05 +01:00
Florian Kaltenberger
13752a6768
fixing pmi_extend
2015-11-27 17:13:48 +01:00
Rohit Gupta
265fc349b4
Merge branch 'develop'
2015-11-27 16:15:39 +01:00
Xiwen JIANG
62e38a05c0
comment debug mode in dlsch_demodulation
2015-11-26 18:03:39 +01:00
Xiwen JIANG
b86efd9cbe
add printf for debug mode in TM7 data extraction
2015-11-26 17:59:29 +01:00
Xiwen JIANG
8b56ae1755
bug fixed in do_OFDM_l() for the 7th symbol in a subframe
2015-11-26 17:21:14 +01:00
Florian Kaltenberger
a9c3b9b483
config files for 2 antennas for usrp and exmimo
2015-11-26 17:02:30 +01:00
Florian Kaltenberger
6c95dafc80
config file for sequans TDD dongle
2015-11-26 13:54:14 +01:00
lukashov
cf2b532a79
changes in dci_tools.c for TM4 to support tpmi2
2015-11-26 12:22:59 +01:00
Xiwen JIANG
4a4a878507
dlsim adaption for new_eNB_dlsch()
2015-11-26 11:49:48 +01:00
Xiwen JIANG
ad5e6a9eea
ulsim and mbmssim adaption
2015-11-26 11:48:53 +01:00
aikaterini.trilyraki
2ed6a5fb9e
minor change in eth_raw.c
2015-11-26 11:08:48 +01:00
Xiwen JIANG
1d511eca7f
Merge branch 'master' into feature-21-TM7
2015-11-26 10:52:04 +01:00
Xiwen JIANG
ed83cbd1eb
TM7 dlsim works
2015-11-26 10:32:43 +01:00
lukashov
f6e750fb66
feature-59-tm4: fixing dci_tools.c tmpi0 all channels all mod orders works
2015-11-25 22:52:42 +01:00
Raymond Knopp
f7c67795ff
CCE Allocation in MAC, rebase from develop. Frame number limitation to 1024 for non-real time targets (caused bad bug in oaisim).
2015-11-25 13:49:40 -08:00
lukashov
9576283381
feature-59-tm4: fixing merge bugs in lte_phy_scope
2015-11-25 20:38:52 +01:00
lukashov
c26f9fea3d
Enabling XFORMS
2015-11-25 20:32:30 +01:00
Navid Nikaein
8ef25c8953
* improve the management of two simultaneous E_RAB_SETUP_REQ.
2015-11-25 11:22:45 +01:00
kaltenbe
6bb478aede
commiting changes from guitry
2015-11-25 10:07:20 +01:00
Raymond Knopp
b10937db82
Moved CCE allocations from PHY to MAC and updated MAC interfaces for BCCH/RA/UE-SPEC scheduling.
2015-11-24 14:35:20 -08:00
Raymond Knopp
e3030b0f9f
corrected HARQ ACK/NAK handling for TDD, in openair1/SCHED/phy_procedures_lte_common.c.
2015-11-24 14:35:20 -08:00
ABEILLE
4f35207900
merged in changes from abeille (modifications on final svn version)
2015-11-24 14:35:20 -08:00
Raymond Knopp
ccef9862fa
nCCE changes prior to rebase
2015-11-24 14:34:32 -08:00
lukashov
9bd28ec137
merge with master
2015-11-24 20:40:35 +01:00
gauthier
717cd8a102
Starting debug, remainig TODO report new mme_ue_id
2015-11-24 16:51:15 +01:00
Florian Kaltenberger
e56bae9f91
added TDD config option to lte-softmodem command line
2015-11-24 13:56:00 +01:00
lukashov
4e9670b5aa
merge with master
2015-11-23 17:48:59 +01:00
Cedric Roux
bae7f1ed2c
Merge branch 'develop' into bugfix-56-UE_category3_throughput
2015-11-23 16:56:06 +01:00
gauthier
e58be6bbc1
Remaining TODO fill assoc_id and mme_ue_id of packets
2015-11-23 16:54:44 +01:00
Cedric Roux
f14a401f27
Manage free downlink HARQ processes with a circular list.
...
The oldest PID (the PID that was used the longest
TTI ago) is at the head and is the next one that
will be used.
No test is done to check that when a process is
allocated it is at least N TTIs old, but some quick
thinking strongly leads to the 'conclusion' that N
won't be smaller than 8, which seems to be what
cat3 UEs require to function properly in the downlink
direction (from the eNodeB to the UE).
2015-11-23 11:57:03 +01:00
Florian Kaltenberger
3e95dad6df
harmonization of pcie_interface.h with firmware
...
adding compiled firmware that supports TDD (corresponding openair0 svn revision 6313)
2015-11-23 11:34:03 +01:00
Rohit Gupta
4b7dda33c2
Merge branch 'feature-34-test_framework' into develop
2015-11-23 11:18:53 +01:00
Rohit Gupta
1c0a59ffcd
Merge branch 'develop' into feature-34-test_framework
2015-11-23 11:18:13 +01:00
Rohit Gupta
73da19b671
updates to autotest framework
2015-11-23 11:16:17 +01:00
aikaterini.trilyraki
8bbff142ab
initialization for remote/local_mac
2015-11-20 17:27:41 +01:00
Florian Kaltenberger
ebeab46165
added duplex_mode to openair0_lib
...
added support for TDD for EXMIMO
2015-11-20 16:57:15 +01:00
aikaterini.trilyraki
4f14199e64
minor change to eth_raw.c
2015-11-20 16:09:08 +01:00
aikaterini.trilyraki
9db853f1b1
changes to lte-softmodem proposed by alcatel- minor change to defs.h
2015-11-19 20:15:40 +01:00
aikaterini.trilyraki
3858c92056
minor addition related to shift and rescale
2015-11-19 20:04:28 +01:00
aikaterini.trilyraki
18e1fdbe5d
minor update in library name
2015-11-19 18:05:54 +01:00
aikaterini.trilyraki
d8b69ffb5c
update common_lib 1. ethernet is no longer considered a device 2. libraries are loaded dynamically
2015-11-19 17:59:36 +01:00
aikaterini.trilyraki
a85c64c3cf
build_oai script and cmake updated - rf device and transport protocol libraries are dynamically linked Note: EXMIMO not supported yet (even though compilation is successful)
2015-11-19 17:28:52 +01:00
aikaterini.trilyraki
40d6386969
lte-softmodem updated to reflect the fact that ethernet is not considered a device anymore- '-M' option changed used to be RRH IP address now it's flag for local/remote RF
2015-11-19 17:00:19 +01:00
Navid Nikaein
9ff6bb7a5d
Protocol implementation for dedicated E-RABSetup.
...
Test of dedicated bearer setup in both control and data plane.
2015-11-19 16:58:27 +01:00
aikaterini.trilyraki
f0e8581fe3
1. update ethernet library-raw/udp modes supported 2. rrh_gw UE/eNB_trasport files updated accordingly
2015-11-19 16:49:58 +01:00
aikaterini.trilyraki
fd39e80e1d
update feature rrh branch with develop branch
...
Merge branch 'develop' into feature-52-rrh-gw
2015-11-19 16:19:39 +01:00
Raymond Knopp
2fe218e91a
Moved CCE allocations from PHY to MAC and updated MAC interfaces for BCCH/RA/UE-SPEC scheduling.
2015-11-18 14:18:58 -08:00
Florian Kaltenberger
857fd74e1b
commiting changes from svn branch SIC-receiver from revision 6836 to 7896 (current svn head). See svn log for details.
2015-11-18 13:44:46 +01:00
gauthier
d27641a443
Begin to begin sending packets (many things to do hash assoc id, mme_ue_id, nas security, etc)
2015-11-17 16:56:24 +01:00
gauthier
7c28ae7360
Still ASN1 display bug
2015-11-13 16:54:17 +01:00
gauthier
757b1940ac
Problem decoding S1AP
2015-11-13 14:04:00 +01:00
Rohit Gupta
73b080150b
added file for executing softmodem tests remotely
2015-11-11 23:47:41 +01:00
Rohit Gupta
111714460a
updated for handling lte-softmodem tests
2015-11-11 23:45:55 +01:00
Rohit Gupta
f7099ef96d
fixed a bug in search/replace python script
2015-11-11 18:56:57 +01:00
Rohit Gupta
75e6b8bf54
minor cleanup
2015-11-11 18:05:43 +01:00
Rohit Gupta
eee5c2e25d
updated python script to run as executable
2015-11-11 18:01:26 +01:00
Rohit Gupta
d09051a83a
fixed a bug in python search/replace script
2015-11-11 15:10:49 +01:00
Rohit Gupta
f13b40c65f
fixed some bugs for UE configuration
2015-11-11 14:56:35 +01:00
Rohit Gupta
65ee1824db
updated files for configuring COTS UE
2015-11-10 17:07:48 +01:00
Rohit Gupta
c3f3d1ac96
fixed a bug to search for an open port
2015-11-10 16:27:32 +01:00
Rohit Gupta
4b4e221323
fixed bugs related to COTS UE
2015-11-10 16:18:42 +01:00
Rohit Gupta
cd71443d1b
added keyword to handle numeric substitution
2015-11-10 10:49:38 +01:00
Cedric Roux
68249569ef
Give a better name to this array.
2015-11-10 10:34:16 +01:00
Cedric Roux
f2b3597b55
This is a very basic fix, more work is needed.
...
The problem seems that we reuse HARQ processes too early.
For example, at subframe 0 we allocate PID 0. At subframe 4
we receive an ACK. At subframe 5 we may well reallocate this
PID. It seems category 3 UEs don't like that. They expect
some delay. How much? I don't know. 8 maybe, as for UL.
This commit forces allocation of HARQ PID:
0 on subframe 1,
1 on subframe 2,
2 on subframe 3,
3 on subframe 4,
4 on subframe 6,
5 on subframe 7,
6 on subframe 8,
7 on subframe 9.
We don't use subframes 0 and 5 (for initial transmission at
least). (Current develop branch doesn't either I think.)
This is not a good solution, just a quick and dirty one. With this
commit I can achieve 12Mbps with iperf UDP on a 5MHz band 7 carrier
with a cat3 UE. And more than 11Mbps with iperf TCP. And a bad
radio link.
We may want to implement some sort of free-list and take the
oldest PID in there, if it is older than let's say 8 subframes
(that is: the last transmission with this pid was done more
than 8 subframes ealier). We may well have no free PID if a
lot of retransmissions are done.
2015-11-10 10:19:07 +01:00
Rohit Gupta
dc440717cd
added fixes for controlling bandrich UE remotely
2015-11-10 02:37:09 +01:00
Navid Nikaein
8c9c7833f9
Few fixes for dedicated DRBs
2015-11-09 15:12:49 +01:00
Navid Nikaein
2a30567223
Additional RRC procedures (RRCConnectionReconfiguration) for dedicated bearer estatblishment triggered by S1AP messages.
...
eNB mac scheduler for dedicated DTCH.
UE MAC logical channel prioritization with additional DTCH.
S1AP messages for dedicated bearer establishment (eNB and UE).
2015-11-09 12:03:11 +01:00
gauthier
34ab7c374f
For syncing with origin
2015-11-06 16:51:30 +01:00
gauthier
70a5dfd639
Merge branch 'develop' into Feature-6-fix_test_core_network_with_scenarios
2015-11-06 10:28:05 +01:00
gauthier
d03f78a403
Cleaned xml output, now a S1C test scenario is generated, ready to be parsed.
2015-11-06 10:03:26 +01:00
gauthier
12b871086d
Removed dedicated scenario option, fixed scenario name(xml attribute) = pdml filename
2015-11-04 12:26:41 +01:00
gauthier
e8c40e78ef
generated an initial 'generic' scenario.
2015-11-04 10:57:03 +01:00
Rohit Gupta
2704037a65
added minor options to ctr-c handler in build script
2015-10-30 14:12:56 +01:00
Rohit Gupta
5ca76645ca
added python-pip, paramiko installation for autotests
2015-10-29 12:33:15 +01:00
Rohit Gupta
ffb486a5cb
removed references to EPC compilation in build script
2015-10-28 11:52:27 +01:00
Rohit Gupta
1ee0fe7bfe
updated build script for removing build files, updating log files
2015-10-28 11:37:36 +01:00
Florian Kaltenberger
a725a3a86b
some error checks in ulsim added
2015-10-28 11:17:58 +01:00
Rohit Gupta
49c70ff96a
fixed sudo permission issue of autotests
2015-10-27 15:24:35 +01:00
Rohit Gupta
36c9872e99
fixed minor bugs in perf_oai script
2015-10-27 10:33:49 +01:00
Rohit Gupta
c8a5aeadbf
updated xml file for lte-softmodem tests
2015-10-27 10:07:12 +01:00
Raymond Knopp
6957f9e5ee
corrected HARQ ACK/NAK handling for TDD, in openair1/SCHED/phy_procedures_lte_common.c.
2015-10-22 02:45:28 -07:00
Navid Nikaein
2120582005
fix the flag for the usrp device write operation (trx_write)
2015-10-21 15:35:18 +02:00
Rohit Gupta
5c05f3f4cb
fixed run script to enable fixed number of frames for simulation
2015-10-21 11:42:07 +02:00
ABEILLE
33860c1604
merged in changes from abeille (modifications on final svn version)
2015-10-19 19:29:04 +02:00
gauthier
62009b9a43
Sync for home
2015-10-16 16:56:06 +02:00
Raymond Knopp
13a409b4e6
brought in AVX2 modifications from svn repository on openair1/PHY/TOOLS/lte-dfts.c
2015-10-16 02:20:52 -07:00
Navid Nikaein
7ca4760309
update bladerf timing
2015-10-12 18:46:03 +02:00
Navid Nikaein
9dd1341db4
update bladerf RX and TX API
2015-10-12 18:42:11 +02:00
Cedric Roux
c383e50bd6
This commit rejects an UE that connects by sending RRCConnectionRequest with S-TMSI.
...
The observed behavior (samsung phone, lte dongle, sequans box) is that the UE
keeps connecting over and over again.
2015-10-09 17:15:11 +02:00
Xiwen JIANG
0d681a0e72
use nb_antennas_tx as physical antenna number and nb_antennas_tx_eNB as antenna port
2015-10-09 10:04:25 +02:00
gauthier
5d4de8bd2d
switch branch
2015-10-08 15:21:56 +02:00
gauthier
1f34bfa1a4
TBD: generate scenario
2015-10-07 18:53:56 +02:00
Xiwen JIANG
67262694de
bug fixed in free beamforming weights
2015-10-05 16:19:52 +02:00
Xiwen JIANG
fac6a63f67
adding new file
2015-10-05 15:41:18 +02:00
Xiwen JIANG
24645f26c6
Merge branch 'master' into feature-21-TM7
...
Conflicts:
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
openair1/PHY/LTE_TRANSPORT/dlsch_modulation.c
openair1/SCHED/phy_procedures_lte_ue.c
openair1/SIMULATION/LTE_PHY/dlsim.c
openair1/SIMULATION/LTE_PHY/mbmssim.c
targets/RT/USER/Makefile
2015-10-05 11:27:50 +02:00
Xiwen JIANG
b40ed6af9b
TM7 works for dlsim.
2015-10-02 11:44:30 +02:00
Xiwen JIANG
7882472b73
revert dlsch_llr_computation
2015-10-01 17:43:46 +02:00
Xiwen JIANG
dc636f2b44
calculate channel level for TM7
2015-10-01 17:42:20 +02:00
Xiwen JIANG
b6b7bd1c19
comment writing to file line
2015-10-01 17:38:02 +02:00
Xiwen JIANG
d09d042806
bug fixed for symbols to activate beamforming channel estimation
2015-09-29 17:00:17 +02:00
Xiwen JIANG
a6f2310e4b
add beamforming mode as an input parameter of llr computation
2015-09-29 14:02:57 +02:00
Xiwen JIANG
d89807b6eb
skip half creterion for PSS RBs
2015-09-29 10:35:47 +02:00
Xiwen JIANG
e5013e5327
move DL beamforming channel estimation to dlsim top level file
2015-09-29 10:34:55 +02:00
Xiwen JIANG
1a1d843f16
compilation for XFORMS
2015-09-25 18:34:23 +02:00
Xiwen JIANG
fdea4022d1
bug fixed for more than 1 physical antenna
2015-09-25 18:14:22 +02:00
Xiwen JIANG
3353735f3c
beamforming weights modification
2015-09-25 11:32:07 +02:00
Xiwen JIANG
aca66630ff
pass physical antenna number as an dlsim option
2015-09-23 16:33:18 +02:00
Chun-Yeow Yeoh
e8cc09b3cc
lte-ue: fix the initialization of UE NAS
...
The NAS UE is not initialized by the UE of lte-softmodem.
Fix this.
Signed-off-by: Chun-Yeow Yeoh <yeow@tmrnd.com.my >
2015-09-23 16:25:43 +08:00
Chun-Yeow Yeoh
bec2b7bba7
lte-softmodem: fix the wrongly Nid_cell
...
Make sure that we fetch the cell id from config
file rather than always fix it to 0.
Signed-off-by: Mhd Zaher Mahfouz <zaher@tmrnd.com.my >
Signed-off-by: Chun-Yeow Yeoh <yeow@tmrnd.com.my >
2015-09-23 15:55:42 +08:00
Xiwen JIANG
70e1e0cecf
more cleanness
2015-09-09 11:57:44 +02:00
Xiwen JIANG
3a5eda8cae
cleanness and comments
2015-09-09 11:37:24 +02:00
Xiwen JIANG
f905243047
update beamforming channel estimation frequency interpolation filter head file
2015-09-09 09:58:23 +02:00
Xiwen JIANG
cf4a005e32
Beamforming channel estimation based on UE specific reference signal
2015-09-09 09:53:59 +02:00
Xiwen JIANG
5adc20ca06
patch difference of TM7 dev with svn r7530 to git branch
2015-08-18 17:17:46 +02:00