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
3e676e07
Commit
3e676e07
authored
Jan 24, 2017
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
T: udpate T message ENB_PHY_ULSCH_UE_DCI
both in T_messages.txt and phy_procedures_lte_eNB.c
parent
51807a4f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
common/utils/T/T_messages.txt
common/utils/T/T_messages.txt
+1
-1
openair1/SCHED/phy_procedures_lte_eNb.c
openair1/SCHED/phy_procedures_lte_eNb.c
+6
-1
No files found.
common/utils/T/T_messages.txt
View file @
3e676e07
...
...
@@ -28,7 +28,7 @@ ID = ENB_PHY_DLSCH_UE_NACK
ID = ENB_PHY_ULSCH_UE_DCI
DESC = eNodeB uplink UE specific DCI as sent by the PHY layer
GROUP = ALL:PHY:GRAPHIC:ENB
FORMAT = int,eNB_ID : int,CC_id : int,frame : int,subframe : int,UE_id : int,rnti : int,harq_pid
FORMAT = int,eNB_ID : int,CC_id : int,frame : int,subframe : int,UE_id : int,rnti : int,harq_pid
: int,mcs : int,round : int,first_rb : int,nb_rb : int,TBS
ID = ENB_PHY_ULSCH_UE_NO_DCI_RETRANSMISSION
DESC = eNodeB uplink UE retransmission due to PHICH NACK (see generate_phich_top)
GROUP = ALL:PHY:GRAPHIC:ENB
...
...
openair1/SCHED/phy_procedures_lte_eNb.c
View file @
3e676e07
...
...
@@ -1309,7 +1309,12 @@ printf("PHY TX f/sf %d/%d sched_sf %d\n", frame, subframe, sched_subframe);
UE_id
=
i
;
T
(
T_ENB_PHY_ULSCH_UE_DCI
,
T_INT
(
phy_vars_eNB
->
Mod_id
),
T_INT
(
phy_vars_eNB
->
CC_id
),
T_INT
(
frame
),
T_INT
(
subframe
),
T_INT
(
UE_id
),
T_INT
(
DCI_pdu
->
dci_alloc
[
i
].
rnti
),
T_INT
(
harq_pid
));
T_INT
(
DCI_pdu
->
dci_alloc
[
i
].
rnti
),
T_INT
(
harq_pid
),
T_INT
(
phy_vars_eNB
->
ulsch_eNB
[(
uint32_t
)
UE_id
]
->
harq_processes
[
harq_pid
]
->
mcs
),
T_INT
(
phy_vars_eNB
->
ulsch_eNB
[(
uint32_t
)
UE_id
]
->
harq_processes
[
harq_pid
]
->
round
),
T_INT
(
phy_vars_eNB
->
ulsch_eNB
[(
uint32_t
)
UE_id
]
->
harq_processes
[
harq_pid
]
->
first_rb
),
T_INT
(
phy_vars_eNB
->
ulsch_eNB
[(
uint32_t
)
UE_id
]
->
harq_processes
[
harq_pid
]
->
nb_rb
),
T_INT
(
phy_vars_eNB
->
ulsch_eNB
[(
uint32_t
)
UE_id
]
->
harq_processes
[
harq_pid
]
->
TBS
));
if
(
UE_id
<
0
)
{
LOG_E
(
PHY
,
"[eNB %"
PRIu8
"] Frame %d: Unknown UE_id for rnti %"
PRIx16
"
\n
"
,
phy_vars_eNB
->
Mod_id
,
phy_vars_eNB
->
proc
[
sched_subframe
].
frame_tx
,
DCI_pdu
->
dci_alloc
[
i
].
rnti
);
...
...
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