An error occurred fetching the project authors.
- 03 Oct, 2019 1 commit
-
-
Javier Morgade authored
M3AP ASN1 source spec updated ACKNOWLEDGEMENT: 1. This commit was developed at Vicomtech (https://www.vicomtech.org) under UE project CDN-X-ALL: "CDN edge-cloud computing for efficient cache and reliable streaming aCROSS Aggregated unicast-multicast LinkS" 2. Project funded by Fed4FIRE+ OC5 (https://www.fed4fire.eu) Signed-off-by: Javier Morgade <javier.morgade@ieee.org>
-
- 01 Jul, 2019 1 commit
-
-
laurent authored
-
- 11 Apr, 2019 1 commit
-
-
Javier Morgade authored
-
- 05 Apr, 2019 1 commit
-
-
Louis Adrien Dufrene authored
-
- 04 Apr, 2019 1 commit
-
-
Louis Adrien Dufrene authored
-
- 30 Mar, 2019 1 commit
-
-
Cedric Roux authored
- size of PUCCH has been fixed to: - 2 RBs for N_RB_UL = 25 (1 RB at top of resource grid, 1 RB at bottom) - 4 RBs for N_RB_UL = 50 - 6 RBs for N_RB_UL = 100 this is arbitrary and will need some rework at some point. This may be also wrong. PUCCH size actually depends on DL traffic (if the ack/nack is not done in PUSCH) and scheduling request configurations. - add sched_frame %= 1024 at one needed place - reserve RBs for retransmission this was not done so new transmissions were scheduled in the same RBs. Since the code works with the notion of 'first_rb' only, it was decided to skip all RBs lower than those retransmitted. This works but is not correct (imagine we have to retransmit RB 23, then all RBs < 23 will not be used for new transmission). The work to fix this properly is complex, a lot has to change, so let's do it this simple way for now. - sort_ue_ul was not correct - add the function maxround_ul to use the correct 'round' (the one from DL was used, which is totally wrong) - be sure to use the correct frame/subframe to get the correct HARQ pid
-
- 27 Feb, 2019 1 commit
-
-
Javier Morgade authored
-
- 14 Feb, 2019 1 commit
-
-
Javier Morgade authored
-- asn1 dissectors ETSI TS 136 331 V14.2.2 (2017-05) -- schedule_SI_MBMS -- ue_decode_si_mbms
-
- 23 Jan, 2019 1 commit
-
-
OAI-admin authored
-
- 18 Jan, 2019 1 commit
-
-
Stefan authored
-
- 15 Jan, 2019 1 commit
-
-
Stefan authored
-
- 14 Jan, 2019 1 commit
-
-
Stefan authored
-
- 07 Jan, 2019 1 commit
-
-
Cedric Roux authored
For whatever reason most of the files had their permission changed from 644 to 755, which is not wanted.
-
- 07 Dec, 2018 1 commit
-
-
Robert Schmidt authored
* MAC differentiates between DU/eNB * sends ITTI message to DU task for F1AP_UE_CONTEXT_RELEASE_REQ * message is dispatched to correctly in DU_TASK * sender correctly fills IDs and cause and sends
-
- 18 Nov, 2018 1 commit
-
-
Raymond Knopp authored
rework of configuration for eMTC/Sidelink. Removal of warnings introduced by eMTC code. Validation of configuration component for eMTC and regular LTE. Sidelink is still not configured.
-
- 20 Oct, 2018 1 commit
-
-
Raymond Knopp authored
-
- 17 Oct, 2018 1 commit
-
-
Bi-Ruei, Chiu authored
1. Modify all expressions using original LTE-RRC data types for new generated ones 2. Does not change any program logic
-
- 03 Sep, 2018 14 commits
-
-
Robert Schmidt authored
Affects: * store_dlsch_buffer() * assign_rbs_required()
-
Navid Nikaein authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
-
Robert Schmidt authored
- introduce structure in RC for slicing conf (UL/DL) - move global variables regarding slice configuration into RC - change ue_slice_membership(): consider UL/DL - remove the unnecessary header files - set default parameters: one slice
-
Niccolò Iardella authored
-
Niccolò Iardella authored
-
Niccolò Iardella authored
-
Niccolò Iardella authored
-
Niccolò Iardella authored
-
Niccolò Iardella authored
-
Niccolò Iardella authored
-
Niccolò Iardella authored
-
- 30 Jul, 2018 1 commit
-
-
Wang Tsu-Han authored
-
- 05 Jul, 2018 1 commit
-
-
oai authored
Remove compilation warnings, also fix telnet server compilation failure and NB-IoT shared lib compilation failure introduced when reviewing L1 sources organization
-
- 26 Jun, 2018 1 commit
-
-
Haruki NAOI authored
-
- 29 May, 2018 1 commit
-
-
Bi-Ruei, Chiu authored
To minimize migration effort, we follow the logic of legacy macro Rel10 and Rel14 used for conditional compilation of current code. In the future, they might be changed to accommodate finer software configuration, e.g. MAKE_VERSION(12,2,0) or MAKE_VERSION(13,1,0) .... etc.
-
- 22 Apr, 2018 1 commit
-
-
Raymond Knopp authored
UE directory splits, creation of UE-specific files, common UE/eNB files and extraction of UE/common components from eNodeB files. renaming of files to minimize common names across directories (i.e. defs.h, vars.h, extern.h)
-
- 08 Apr, 2018 1 commit
-
-
Raymond Knopp authored
-
- 13 Mar, 2018 1 commit
-
-
Raymond Knopp authored
-
- 08 Mar, 2018 1 commit
-
-
Cedric Roux authored
The code was very unclear and potentially buggy. This new version is more robust. We can waste up to 2 bytes because the last header in the MAC PDU does not contain a length field and when we request data from RLC we suppose a 3-bytes MAC header. This might be optimized at some point, but the benefit would be low. This commit also contains some general cleanup: - formatting - variables' types: let's use 'int' instead of trying to be clever by using small types that may generate bugs if the value is too big - remove 'tpc_accumulated' which was globally used for all UEs and has no purpose other than logging. We may want to rework a bit the TPC machinery at some point. As the code is today we may repeatedly send TPC over and over without caring about the 3GPP limits, in which case no one knows how the UE is supposed to behave: does it clamp the current max value or does it accumulate over and over and take the clamped value to compute its actual power? If we send a reverse TPC (reduce power instead of increase) does it do it immediately or does it have to decrease n+1 times if we previously ordered it to increase n times?) We do not address the problem of prioritizing LCIDs. As of today there is only one dedicated traffic channel (DTCH), so it's not a problem at this point. What has been tested: - monolithic eNB 5/10/20MHz with one cots UE, TCP/UDP UL/DL. At 20MHz the machine used was not capable of keeping up, generating lots of Us and Ls when the throughput reaches 60Mb/s. USRP B210 was used.
-
- 01 Mar, 2018 1 commit
-
-
naoi authored
-