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
e486fd04
Commit
e486fd04
authored
Sep 23, 2016
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add SchedUlCqiInfoReq support in ffdebug.c
parent
69d1e48b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
1 deletion
+42
-1
openair2/LAYER2/MAC/ffdebug.c
openair2/LAYER2/MAC/ffdebug.c
+42
-1
No files found.
openair2/LAYER2/MAC/ffdebug.c
View file @
e486fd04
...
@@ -382,6 +382,39 @@ static void dump_SchedDlCqiInfoReqParameters(const struct SchedDlCqiInfoReqParam
...
@@ -382,6 +382,39 @@ static void dump_SchedDlCqiInfoReqParameters(const struct SchedDlCqiInfoReqParam
fp
(
l
,
Q
,
"}"
);
fp
(
l
,
Q
,
"}"
);
}
}
static
void
dump_UlCqi_s
(
struct
UlCqi_s
s
,
int
l
)
{
int
i
;
fp
(
l
,
Q
,
"(struct UlCqi_s){
\n
"
);
fp
(
l
,
Q
,
" .rnti= %d,
\n
"
,
s
.
rnti
);
fp
(
l
,
Q
,
" .sinr= {
\n
"
);
for
(
i
=
0
;
i
<
100
;
i
++
)
fp
(
0
,
Q
,
"%d,"
,
s
.
sinr
[
i
]);
fp
(
0
,
Q
,
"},
\n
"
);
fp
(
l
,
Q
,
" .type= %d,
\n
"
,
s
.
type
);
fp
(
l
,
Q
,
" .servCellIndex= %d,
\n
"
,
s
.
servCellIndex
);
fp
(
l
,
Q
,
"}"
);
}
static
void
dump_SchedUlCqiInfoReqParameters
(
const
struct
SchedUlCqiInfoReqParameters
*
p
,
int
l
)
{
int
i
;
fp
(
l
,
Q
,
"(struct SchedUlCqiInfoReqParameters){
\n
"
);
fp
(
l
,
Q
,
" .sfnSf= %d,
\n
"
,
p
->
sfnSf
);
fp
(
l
,
Q
,
" .nr_ulCqiList= %d,
\n
"
,
p
->
nr_ulCqiList
);
if
(
p
->
nr_ulCqiList
!=
0
)
{
fp
(
l
,
Q
,
" .ulCqiList= (struct UlCqi_s[]){
\n
"
);
for
(
i
=
0
;
i
<
p
->
nr_ulCqiList
;
i
++
)
{
dump_UlCqi_s
(
p
->
ulCqiList
[
i
],
l
+
4
);
fp
(
0
,
Q
,
",
\n
"
);
}
fp
(
l
,
Q
,
" },
\n
"
);
}
else
fp
(
l
,
Q
,
" .ulCqiList= NULL,
\n
"
);
fp
(
l
,
Q
,
" .nr_vendorSpecificList= 0,
\n
"
);
fp
(
l
,
Q
,
" .vendorSpecificList= NULL
\n
"
);
fp
(
l
,
Q
,
"}"
);
}
static
void
dump_UlInfoListElement_s
(
struct
UlInfoListElement_s
s
,
int
l
)
static
void
dump_UlInfoListElement_s
(
struct
UlInfoListElement_s
s
,
int
l
)
{
{
int
i
;
int
i
;
...
@@ -746,5 +779,13 @@ void _SchedUlMacCtrlInfoReq(void *x, const struct SchedUlMacCtrlInfoReqParameter
...
@@ -746,5 +779,13 @@ void _SchedUlMacCtrlInfoReq(void *x, const struct SchedUlMacCtrlInfoReqParameter
#undef SchedUlCqiInfoReq
#undef SchedUlCqiInfoReq
void
_SchedUlCqiInfoReq
(
void
*
x
,
const
struct
SchedUlCqiInfoReqParameters
*
params
)
void
_SchedUlCqiInfoReq
(
void
*
x
,
const
struct
SchedUlCqiInfoReqParameters
*
params
)
{
{
abort
();
LOCK
();
fp
(
2
,
Q
,
"{
\n
"
);
fp
(
2
,
Q
,
" struct SchedUlCqiInfoReqParameters *p = &
\n
"
);
dump_SchedUlCqiInfoReqParameters
(
params
,
2
+
4
);
fp
(
0
,
Q
,
";
\n
"
);
fp
(
2
,
Q
,
" SchedUlCqiInfoReq(x, p);
\n
"
);
fp
(
2
,
Q
,
"}
\n
"
);
UNLOCK
();
SchedUlCqiInfoReq
(
x
,
params
);
}
}
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