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
5ffe7a2e
Commit
5ffe7a2e
authored
May 27, 2018
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compilation success after merge with master + corrections
parent
eb3f6114
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
67 additions
and
36 deletions
+67
-36
openair2/LAYER2/MAC/config_ue.c
openair2/LAYER2/MAC/config_ue.c
+4
-3
openair2/LAYER2/MAC/proto.h
openair2/LAYER2/MAC/proto.h
+1
-0
openair2/LAYER2/MAC/ue_procedures.c
openair2/LAYER2/MAC/ue_procedures.c
+1
-4
openair2/RRC/LITE/rrc_UE.c
openair2/RRC/LITE/rrc_UE.c
+61
-29
No files found.
openair2/LAYER2/MAC/config_ue.c
View file @
5ffe7a2e
...
@@ -136,9 +136,10 @@ rrc_mac_config_req_ue(module_id_t Mod_idP,
...
@@ -136,9 +136,10 @@ rrc_mac_config_req_ue(module_id_t Mod_idP,
,
uint8_t
num_active_cba_groups
,
uint16_t
cba_rnti
,
uint8_t
num_active_cba_groups
,
uint16_t
cba_rnti
#endif
#endif
#if defined(Rel14)
#if defined(Rel14)
,
config_action_t
config_action
,
config_action_t
config_action
,
,
const
uint32_t
*
const
sourceL2Id
const
uint32_t
*
const
sourceL2Id
,
,
const
uint32_t
*
const
destinationL2Id
,
const
uint32_t
*
const
destinationL2Id
,
const
uint32_t
*
const
groupL2Id
,
SL_Preconfiguration_r12_t
*
SL_Preconfiguration_r12
,
SL_Preconfiguration_r12_t
*
SL_Preconfiguration_r12
,
uint32_t
directFrameNumber_r12
,
uint32_t
directFrameNumber_r12
,
long
directSubframeNumber_r12
,
long
directSubframeNumber_r12
,
...
...
openair2/LAYER2/MAC/proto.h
View file @
5ffe7a2e
...
@@ -1030,6 +1030,7 @@ int rrc_mac_config_req_ue(module_id_t module_idP,
...
@@ -1030,6 +1030,7 @@ int rrc_mac_config_req_ue(module_id_t module_idP,
,
config_action_t
config_action
,
,
config_action_t
config_action
,
const
uint32_t
*
const
sourceL2Id
,
const
uint32_t
*
const
sourceL2Id
,
const
uint32_t
*
const
destinationL2Id
,
const
uint32_t
*
const
destinationL2Id
,
const
uint32_t
*
const
groupL2Id
,
SL_Preconfiguration_r12_t
*
SL_Preconfiguration_r12_t
,
SL_Preconfiguration_r12_t
*
SL_Preconfiguration_r12_t
,
uint32_t
directFrame_r12
,
uint32_t
directFrame_r12
,
long
directSubframe_r12
,
long
directSubframe_r12
,
...
...
openair2/LAYER2/MAC/ue_procedures.c
View file @
5ffe7a2e
...
@@ -539,7 +539,6 @@ ue_send_sdu(module_id_t module_idP,
...
@@ -539,7 +539,6 @@ ue_send_sdu(module_id_t module_idP,
CCCH
,
CCCH
,
(
uint8_t
*
)
payload_ptr
,
(
uint8_t
*
)
payload_ptr
,
rx_lengths
[
i
],
rx_lengths
[
i
],
ENB_FLAG_NO
,
eNB_index
,
eNB_index
,
0
);
0
);
...
@@ -802,7 +801,7 @@ ue_send_mch_sdu(module_id_t module_idP, uint8_t CC_id, frame_t frameP,
...
@@ -802,7 +801,7 @@ ue_send_mch_sdu(module_id_t module_idP, uint8_t CC_id, frame_t frameP,
mac_rlc_data_ind
(
module_idP
,
UE_mac_inst
[
module_idP
].
crnti
,
eNB_index
,
frameP
,
ENB_FLAG_NO
,
MBMS_FLAG_YES
,
MTCH
,
/*+ (maxDRB + 3), */
mac_rlc_data_ind
(
module_idP
,
UE_mac_inst
[
module_idP
].
crnti
,
eNB_index
,
frameP
,
ENB_FLAG_NO
,
MBMS_FLAG_YES
,
MTCH
,
/*+ (maxDRB + 3), */
(
char
*
)
payload_ptr
,
rx_lengths
[
i
],
1
,
(
char
*
)
payload_ptr
,
rx_lengths
[
i
],
1
,
NULL
,
NULL
#ifdef Rel14
#ifdef Rel14
,
SL_RESET_RLC_FLAG_NO
,
SL_RESET_RLC_FLAG_NO
#endif
#endif
...
@@ -864,7 +863,6 @@ void ue_send_sl_sdu(module_id_t module_idP,
...
@@ -864,7 +863,6 @@ void ue_send_sl_sdu(module_id_t module_idP,
lcid
=
UE_mac_inst
[
module_idP
].
sl_info
[
i
].
LCID
;
lcid
=
UE_mac_inst
[
module_idP
].
sl_info
[
i
].
LCID
;
break
;
break
;
}
}
>>>>>>>
origin
for
(
j
=
0
;
j
<
MAX_NUM_LCID
;
j
++
){
for
(
j
=
0
;
j
<
MAX_NUM_LCID
;
j
++
){
if
((
longh
->
LCID
<
MAX_NUM_LCID_DATA
)
&&
(
j
<
MAX_NUM_LCID_DATA
)){
if
((
longh
->
LCID
<
MAX_NUM_LCID_DATA
)
&&
(
j
<
MAX_NUM_LCID_DATA
)){
...
@@ -962,7 +960,6 @@ void ue_send_sl_sdu(module_id_t module_idP,
...
@@ -962,7 +960,6 @@ void ue_send_sl_sdu(module_id_t module_idP,
SL_DISCOVERY
,
SL_DISCOVERY
,
sdu
,
//(uint8_t*)&UE_mac_inst[Mod_id].SL_Discovery[0].Rx_buffer.Payload[0],
sdu
,
//(uint8_t*)&UE_mac_inst[Mod_id].SL_Discovery[0].Rx_buffer.Payload[0],
len
,
len
,
ENB_FLAG_NO
,
eNB_index
,
eNB_index
,
0
);
0
);
...
...
openair2/RRC/LITE/rrc_UE.c
View file @
5ffe7a2e
This diff is collapsed.
Click to expand it.
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