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
a22335a8
Commit
a22335a8
authored
Feb 08, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FH 7.2: ignore packets with no payload instead of asserting
parent
2b796874
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
66 deletions
+60
-66
radio/fhi_72/oaioran.c
radio/fhi_72/oaioran.c
+60
-66
No files found.
radio/fhi_72/oaioran.c
View file @
a22335a8
...
...
@@ -325,17 +325,15 @@ int xran_fh_rx_read_slot(ru_info_t *ru, int *frame, int *slot)
pData
=
p_sec_desc
->
pData
;
ptr
=
pData
;
pos
=
(
int32_t
*
)(
start_ptr
+
(
4
*
sym_idx
*
4096
));
if
(
ptr
==
NULL
||
pos
==
NULL
)
continue
;
uint8_t
*
u8dptr
;
struct
xran_prb_map
*
pRbMap
=
pPrbMap
;
AssertFatal
(
ptr
!=
NULL
,
"ptr NULL
\n
"
);
AssertFatal
(
pos
!=
NULL
,
"pos NULL
\n
"
);
if
(
1
)
{
uint32_t
idxElm
=
0
;
u8dptr
=
(
uint8_t
*
)
ptr
;
uint8_t
*
src
=
(
uint8_t
*
)
ptr
;
int16_t
payload_len
=
0
;
uint8_t
*
src
=
(
uint8_t
*
)
u8dptr
;
LOG_D
(
PHY
,
"pRbMap->nPrbElm %d
\n
"
,
pRbMap
->
nPrbElm
);
for
(
idxElm
=
0
;
idxElm
<
pRbMap
->
nPrbElm
;
idxElm
++
)
{
...
...
@@ -392,10 +390,6 @@ int xran_fh_rx_read_slot(ru_info_t *ru, int *frame, int *slot)
exit
(
-
1
);
}
}
}
else
{
return
0
;
}
}
// sym_ind
}
// ant_ind
}
// vv_inf
...
...
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