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
d089d4a2
Commit
d089d4a2
authored
Sep 06, 2020
by
Andrew Burger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Additional warning/Analysis logs
parent
3483f7ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
openair2/PHY_INTERFACE/phy_stub_UE.c
openair2/PHY_INTERFACE/phy_stub_UE.c
+2
-2
targets/RT/USER/lte-ue.c
targets/RT/USER/lte-ue.c
+8
-0
No files found.
openair2/PHY_INTERFACE/phy_stub_UE.c
View file @
d089d4a2
...
@@ -948,7 +948,7 @@ int memcpy_dl_config_req(L1_rxtx_proc_t *proc,
...
@@ -948,7 +948,7 @@ int memcpy_dl_config_req(L1_rxtx_proc_t *proc,
req
->
dl_config_request_body
.
dl_config_pdu_list
[
i
];
req
->
dl_config_request_body
.
dl_config_pdu_list
[
i
];
}
}
LOG_A
(
MAC
,
"dl_config_req in memcpy Frame: %d Subframe: %d"
,
LOG_A
(
MAC
,
"dl_config_req in memcpy Frame: %d Subframe: %d
\n
"
,
p
->
sfn_sf
>>
4
,
p
->
sfn_sf
&
15
);
p
->
sfn_sf
>>
4
,
p
->
sfn_sf
&
15
);
if
(
!
put_queue
(
&
dl_config_req_queue
,
p
))
{
if
(
!
put_queue
(
&
dl_config_req_queue
,
p
))
{
...
@@ -1217,7 +1217,7 @@ void *ue_standalone_pnf_task(void *context)
...
@@ -1217,7 +1217,7 @@ void *ue_standalone_pnf_task(void *context)
}
}
else
else
{
{
LOG_A
(
MAC
,
"dl_config_req fresh off socket Frame: %d Subframe: %d"
,
LOG_A
(
MAC
,
"dl_config_req fresh off socket Frame: %d Subframe: %d
\n
"
,
dl_config_req
.
sfn_sf
>>
4
,
dl_config_req
.
sfn_sf
&
15
);
dl_config_req
.
sfn_sf
>>
4
,
dl_config_req
.
sfn_sf
&
15
);
// check to see if dl_config_req is null
// check to see if dl_config_req is null
memcpy_dl_config_req
(
NULL
,
NULL
,
&
dl_config_req
);
memcpy_dl_config_req
(
NULL
,
NULL
,
&
dl_config_req
);
...
...
targets/RT/USER/lte-ue.c
View file @
d089d4a2
...
@@ -1030,6 +1030,7 @@ static void *UE_phy_stub_standalone_pnf_task(void *arg)
...
@@ -1030,6 +1030,7 @@ static void *UE_phy_stub_standalone_pnf_task(void *arg)
int
num_pairs
=
0
;
int
num_pairs
=
0
;
int
num_lone
=
0
;
int
num_lone
=
0
;
int
last_sfn_sf
=
-
1
;
while
(
!
oai_exit
)
{
while
(
!
oai_exit
)
{
bool
sent_any
=
false
;
bool
sent_any
=
false
;
...
@@ -1037,7 +1038,14 @@ static void *UE_phy_stub_standalone_pnf_task(void *arg)
...
@@ -1037,7 +1038,14 @@ static void *UE_phy_stub_standalone_pnf_task(void *arg)
LOG_E
(
MAC
,
"sem_wait() error
\n
"
);
LOG_E
(
MAC
,
"sem_wait() error
\n
"
);
abort
();
abort
();
}
}
int
sfn_sf
=
current_sfn_sf
;
int
sfn_sf
=
current_sfn_sf
;
if
(
sfn_sf
==
last_sfn_sf
)
{
LOG_W
(
MAC
,
"repeated sfn_sf = %d.%d
\n
"
,
sfn_sf
>>
4
,
sfn_sf
&
15
);
}
last_sfn_sf
=
sfn_sf
;
nfapi_dl_config_request_t
*
dl_config_req
=
get_queue
(
&
dl_config_req_queue
);
nfapi_dl_config_request_t
*
dl_config_req
=
get_queue
(
&
dl_config_req_queue
);
nfapi_tx_request_pdu_t
*
tx_request_pdu_list
=
get_queue
(
&
tx_req_pdu_queue
);
nfapi_tx_request_pdu_t
*
tx_request_pdu_list
=
get_queue
(
&
tx_req_pdu_queue
);
...
...
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