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
canghaiwuhen
OpenXG-RAN
Commits
ed8c95eb
Commit
ed8c95eb
authored
Jul 30, 2018
by
lfarizav
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding a new configuration file for 2 UEs
parent
0699a73d
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
388 additions
and
6 deletions
+388
-6
openair1/SCHED/phy_procedures_lte_eNb.c
openair1/SCHED/phy_procedures_lte_eNb.c
+2
-2
openair2/LAYER2/MAC/ue_procedures.c
openair2/LAYER2/MAC/ue_procedures.c
+4
-4
targets/PROJECTS/GENERIC-LTE-EPC/CONF/rru.band7.tm1.if4p5.50PRB.oaisim.2UE.conf
...IC-LTE-EPC/CONF/rru.band7.tm1.if4p5.50PRB.oaisim.2UE.conf
+382
-0
No files found.
openair1/SCHED/phy_procedures_lte_eNb.c
View file @
ed8c95eb
...
...
@@ -2140,7 +2140,7 @@ void pucch_procedures(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc,int UE_id,int harq
if
((
eNB
->
dlsch
[
UE_id
][
0
])
&&
(
eNB
->
dlsch
[
UE_id
][
0
]
->
rnti
>
0
)
&&
(
eNB
->
ulsch
[
UE_id
]
->
harq_processes
[
harq_pid
]
->
subframe_scheduling_flag
==
0
))
{
printf
(
"if
\n
"
);
//
printf("if\n");
// check SR availability
do_SR
=
is_SR_subframe
(
eNB
,
proc
,
UE_id
);
// do_SR = 0;
...
...
@@ -2164,7 +2164,7 @@ void pucch_procedures(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc,int UE_id,int harq
if
((
n1_pucch0
==-
1
)
&&
(
n1_pucch1
==-
1
)
&&
(
do_SR
==
0
))
{
// no TX PDSCH that have to be checked and no SR for this UE_id
}
else
{
// otherwise we have some PUCCH detection to do
printf
(
"else
\n
"
);
//
printf("else\n");
// Null out PUCCH PRBs for noise measurement
switch
(
fp
->
N_RB_UL
)
{
case
6
:
...
...
openair2/LAYER2/MAC/ue_procedures.c
View file @
ed8c95eb
...
...
@@ -461,7 +461,7 @@ ue_send_sdu(
ENB_FLAG_NO
,
eNB_index
,
0
);
printf
(
"1
\n
"
);
//
printf("1\n");
}
else
if
((
rx_lcids
[
i
]
==
DCCH
)
||
(
rx_lcids
[
i
]
==
DCCH1
))
{
LOG_D
(
MAC
,
"[UE %d] Frame %d : DLSCH -> DL-DCCH%d, RRC message (eNB %d, %d bytes)
\n
"
,
module_idP
,
frameP
,
rx_lcids
[
i
],
eNB_index
,
rx_lengths
[
i
]);
...
...
@@ -530,7 +530,7 @@ void ue_decode_si(module_id_t module_idP,int CC_id,frame_t frameP, uint8_t eNB_i
ENB_FLAG_NO
,
eNB_index
,
0
);
printf
(
"2
\n
"
);
//
printf("2\n");
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_UE_DECODE_SI
,
VCD_FUNCTION_OUT
);
#if UE_TIMING_TRACE
stop_meas
(
&
UE_mac_inst
[
module_idP
].
rx_si
);
...
...
@@ -570,7 +570,7 @@ void ue_decode_p(module_id_t module_idP,int CC_id,frame_t frameP, uint8_t eNB_in
ENB_FLAG_NO
,
eNB_index
,
0
);
printf
(
"3
\n
"
);
//
printf("3\n");
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_UE_DECODE_PCCH
,
VCD_FUNCTION_OUT
);
#if UE_TIMING_TRACE
stop_meas
(
&
UE_mac_inst
[
module_idP
].
rx_p
);
...
...
@@ -677,7 +677,7 @@ void ue_send_mch_sdu(module_id_t module_idP, uint8_t CC_id, frame_t frameP, uint
M_RNTI
,
MCCH
,
payload_ptr
,
rx_lengths
[
i
],
0
,
eNB_index
,
sync_area
);
printf
(
"4
\n
"
);
//
printf("4\n");
}
else
if
(
rx_lcids
[
i
]
==
MTCH
)
{
if
(
UE_mac_inst
[
module_idP
].
msi_status
==
1
)
{
LOG_I
(
MAC
,
"[UE %d] Frame %d : MCH->MTCH for sync area %d (eNB %d, %d bytes)
\n
"
,
module_idP
,
frameP
,
sync_area
,
eNB_index
,
rx_lengths
[
i
]);
...
...
targets/PROJECTS/GENERIC-LTE-EPC/CONF/rru.band7.tm1.if4p5.50PRB.oaisim.2UE.conf
0 → 100644
View file @
ed8c95eb
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