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
ZhouShuya
OpenXG-RAN
Commits
5111eafd
Commit
5111eafd
authored
Dec 29, 2018
by
Nick Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
confirm RAR PDU content
parent
75f0c3a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
openair1/PHY/LTE_TRANSPORT/dci_tools_NB_IoT.c
openair1/PHY/LTE_TRANSPORT/dci_tools_NB_IoT.c
+1
-1
openair1/SCHED/IF_Module_L1_primitives_NB_IoT.c
openair1/SCHED/IF_Module_L1_primitives_NB_IoT.c
+9
-0
No files found.
openair1/PHY/LTE_TRANSPORT/dci_tools_NB_IoT.c
View file @
5111eafd
...
@@ -317,7 +317,7 @@ int generate_eNB_dlsch_params_from_dci_NB_IoT(PHY_VARS_eNB *eNB,
...
@@ -317,7 +317,7 @@ int generate_eNB_dlsch_params_from_dci_NB_IoT(PHY_VARS_eNB *eNB,
DCI_tmp
=
(
uint8_t
*
)
DLSCH_DCI_NB_IoT
;
DCI_tmp
=
(
uint8_t
*
)
DLSCH_DCI_NB_IoT
;
int
tmp
=
0
;
int
tmp
=
0
;
printf
(
"DCI PDU content
\n
"
);
printf
(
"DCI PDU content
:
"
);
for
(
tmp
=
0
;
tmp
<
3
;
tmp
++
)
for
(
tmp
=
0
;
tmp
<
3
;
tmp
++
)
printf
(
"%02x "
,
DCI_tmp
[
tmp
]);
printf
(
"%02x "
,
DCI_tmp
[
tmp
]);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
...
...
openair1/SCHED/IF_Module_L1_primitives_NB_IoT.c
View file @
5111eafd
...
@@ -207,6 +207,15 @@ void handle_nfapi_dlsch_pdu_NB_IoT(PHY_VARS_eNB *eNB,
...
@@ -207,6 +207,15 @@ void handle_nfapi_dlsch_pdu_NB_IoT(PHY_VARS_eNB *eNB,
eNB
->
ndlsch_RAR
->
harq_process
->
TBS
=
rel13
->
length
;
eNB
->
ndlsch_RAR
->
harq_process
->
TBS
=
rel13
->
length
;
eNB
->
ndlsch_RAR
->
harq_process
->
pdu
=
sdu
;
eNB
->
ndlsch_RAR
->
harq_process
->
pdu
=
sdu
;
printf
(
"RAR PDU content:"
);
int
fori
=
0
;
for
(
fori
=
0
;
fori
<
7
;
fori
++
)
{
printf
(
"%02x "
,
eNB
->
ndlsch_RAR
->
harq_process
->
pdu
[
fori
]);
}
printf
(
"
\n
"
);
eNB
->
ndlsch_RAR
->
npdsch_start_symbol
=
rel13
->
start_symbol
;
eNB
->
ndlsch_RAR
->
npdsch_start_symbol
=
rel13
->
start_symbol
;
eNB
->
ndlsch_RAR
->
active
=
1
;
eNB
->
ndlsch_RAR
->
active
=
1
;
...
...
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