Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lizhongxiao
OpenXG-RAN
Commits
ae5f3e53
Commit
ae5f3e53
authored
Jan 18, 2015
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
git-svn-id:
http://svn.eurecom.fr/openair4G/trunk@6411
818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent
3a5df001
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
openair2/RRC/LITE/MESSAGES/asn1_msg.c
openair2/RRC/LITE/MESSAGES/asn1_msg.c
+4
-4
openair2/RRC/LITE/defs.h
openair2/RRC/LITE/defs.h
+1
-0
openair2/RRC/LITE/rrc_common.c
openair2/RRC/LITE/rrc_common.c
+2
-0
No files found.
openair2/RRC/LITE/MESSAGES/asn1_msg.c
View file @
ae5f3e53
...
...
@@ -2321,14 +2321,14 @@ OAI_UECapability_t *fill_ue_capability(char *UE_EUTRA_Capability_xer_fname) {
assert
(
UE_EUTRA_Capability
);
if
(
!
UE_EUTRA_Capability_xer_fname
)
{
Bandlist
[
0
].
bandEUTRA
=
3
3
;
// 1900-1920 T
DD
Bandlist
[
0
].
bandEUTRA
=
3
;
// UL 1710-1785, DL 1805-1880 F
DD
Bandlist
[
0
].
halfDuplex
=
0
;
Bandlist
[
1
].
bandEUTRA
=
38
;
// 2570-2620 TDD
Bandlist
[
1
].
bandEUTRA
=
5
;
// UL 824-849 , DL 869-894 FDD
Bandlist
[
1
].
halfDuplex
=
0
;
Bandlist
[
2
].
bandEUTRA
=
5
;
// 824-849 , 869-894
FDD
Bandlist
[
2
].
bandEUTRA
=
7
;
// UL 2500-2570, DL 2620-2690
FDD
Bandlist
[
2
].
halfDuplex
=
0
;
Bandlist
[
3
].
bandEUTRA
=
7
;
// 2500-2570, 2620-2690 FDD
Bandlist
[
3
].
bandEUTRA
=
38
;
// UL/DL 2570-2620, TDD
Bandlist
[
3
].
halfDuplex
=
0
;
memset
((
void
*
)
InterFreqBandInfo
,
0
,
sizeof
(
InterFreqBandInfo
));
...
...
openair2/RRC/LITE/defs.h
View file @
ae5f3e53
...
...
@@ -431,6 +431,7 @@ typedef struct UE_RRC_INST_s {
Byte_t
rat
;
as_nas_info_t
initialNasMsg
;
# endif
OAI_UECapability_t
*
UECap
;
uint8_t
*
UECapability
;
uint8_t
UECapability_size
;
UE_RRC_INFO
Info
[
NB_SIG_CNX_UE
];
...
...
openair2/RRC/LITE/rrc_common.c
View file @
ae5f3e53
...
...
@@ -222,6 +222,8 @@ void openair_rrc_top_init(int eMBMS_active, char *uecap_xer, uint8_t cba_group_a
// fill UE capability
UECap
=
fill_ue_capability
(
uecap_xer
);
UE_rrc_inst
[
module_id
].
UECap
=
UECap
;
for
(
module_id
=
0
;
module_id
<
NB_UE_INST
;
module_id
++
)
{
UE_rrc_inst
[
module_id
].
UECapability
=
UECap
->
sdu
;
UE_rrc_inst
[
module_id
].
UECapability_size
=
UECap
->
sdu_size
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment