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
zzha zzha
OpenXG-RAN
Commits
90af41e6
Commit
90af41e6
authored
Sep 12, 2020
by
Andrew Burger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Logging buflen of rx_ind data
parent
3d394948
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
openair2/PHY_INTERFACE/phy_stub_UE.c
openair2/PHY_INTERFACE/phy_stub_UE.c
+2
-0
No files found.
openair2/PHY_INTERFACE/phy_stub_UE.c
View file @
90af41e6
...
@@ -95,9 +95,11 @@ void fill_rx_indication_UE_MAC(module_id_t Mod_id,
...
@@ -95,9 +95,11 @@ void fill_rx_indication_UE_MAC(module_id_t Mod_id,
pdu
->
rx_indication_rel9
.
tl
.
tag
=
NFAPI_RX_INDICATION_REL9_TAG
;
pdu
->
rx_indication_rel9
.
tl
.
tag
=
NFAPI_RX_INDICATION_REL9_TAG
;
pdu
->
rx_indication_rel9
.
timing_advance_r9
=
0
;
pdu
->
rx_indication_rel9
.
timing_advance_r9
=
0
;
// What is this? - Andrew
// ulsch_buffer is necessary to keep its value.
// ulsch_buffer is necessary to keep its value.
pdu
->
data
=
malloc
(
buflen
);
pdu
->
data
=
malloc
(
buflen
);
memcpy
(
pdu
->
data
,
ulsch_buffer
,
buflen
);
memcpy
(
pdu
->
data
,
ulsch_buffer
,
buflen
);
LOG_I
(
MAC
,
"buflen of rx_ind pdu_data = %u
\n
"
,
buflen
);
// estimate timing advance for MAC
// estimate timing advance for MAC
timing_advance_update
=
0
;
// Don't know what to put here
timing_advance_update
=
0
;
// Don't know what to put here
pdu
->
rx_indication_rel8
.
timing_advance
=
timing_advance_update
;
pdu
->
rx_indication_rel8
.
timing_advance
=
timing_advance_update
;
...
...
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