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
cd7c4955
Commit
cd7c4955
authored
Mar 21, 2023
by
Stone WU
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug #126520: fix nrUE uplink NR_SLOT_INDICATION with wrong slot
parent
de2638ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
executables/nr-ue.c
executables/nr-ue.c
+1
-1
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
+1
-1
No files found.
executables/nr-ue.c
View file @
cd7c4955
...
@@ -250,10 +250,10 @@ static void send_vt_slot_ack(nfapi_ue_slot_indication_vt_t *vt_ue_slot_ind, uint
...
@@ -250,10 +250,10 @@ static void send_vt_slot_ack(nfapi_ue_slot_indication_vt_t *vt_ue_slot_ind, uint
{
{
LOG_D
(
NR_MAC
,
"Sfn [%d] Slot [%d] from %s
\n
"
,
NFAPI_SFNSLOT2SFN
(
sfn_slot
),
LOG_D
(
NR_MAC
,
"Sfn [%d] Slot [%d] from %s
\n
"
,
NFAPI_SFNSLOT2SFN
(
sfn_slot
),
NFAPI_SFNSLOT2SLOT
(
sfn_slot
),
__FUNCTION__
);
NFAPI_SFNSLOT2SLOT
(
sfn_slot
),
__FUNCTION__
);
check_and_process_slot_ind
(
vt_ue_slot_ind
,
NFAPI_SFNSLOT2SFN
(
sfn_slot
),
NFAPI_SFNSLOT2SLOT
(
sfn_slot
)
);
NR_UL_IND_t
ul_info
=
{
NR_UL_IND_t
ul_info
=
{
.
vt_ue_slot_ind
=
*
vt_ue_slot_ind
,
.
vt_ue_slot_ind
=
*
vt_ue_slot_ind
,
};
};
check_and_process_slot_ind
(
vt_ue_slot_ind
,
NFAPI_SFNSLOT2SFN
(
sfn_slot
),
NFAPI_SFNSLOT2SLOT
(
sfn_slot
)
);
send_nsa_standalone_msg
(
&
ul_info
,
vt_ue_slot_ind
->
header
.
message_id
);
send_nsa_standalone_msg
(
&
ul_info
,
vt_ue_slot_ind
->
header
.
message_id
);
ul_info
.
vt_ue_slot_ind
.
sfn
=
0
;
ul_info
.
vt_ue_slot_ind
.
sfn
=
0
;
ul_info
.
vt_ue_slot_ind
.
slot
=
0
;
ul_info
.
vt_ue_slot_ind
.
slot
=
0
;
...
...
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
View file @
cd7c4955
...
@@ -230,7 +230,7 @@ void send_nsa_standalone_msg(NR_UL_IND_t *UL_INFO, uint16_t msg_id)
...
@@ -230,7 +230,7 @@ void send_nsa_standalone_msg(NR_UL_IND_t *UL_INFO, uint16_t msg_id)
}
}
LOG_D
(
NR_MAC
,
"SLOT_IND sent to Proxy, Size: %d Frame %d Slot %d
\n
"
,
encoded_size
,
LOG_D
(
NR_MAC
,
"SLOT_IND sent to Proxy, Size: %d Frame %d Slot %d
\n
"
,
encoded_size
,
UL_INFO
->
rach_ind
.
sfn
,
UL_INFO
->
rach
_ind
.
slot
);
UL_INFO
->
vt_ue_slot_ind
.
sfn
,
UL_INFO
->
vt_ue_slot
_ind
.
slot
);
if
(
send
(
ue_tx_sock_descriptor
,
buffer
,
encoded_size
,
0
)
<
0
)
if
(
send
(
ue_tx_sock_descriptor
,
buffer
,
encoded_size
,
0
)
<
0
)
{
{
LOG_E
(
NR_MAC
,
"Send Proxy NR_UE failed
\n
"
);
LOG_E
(
NR_MAC
,
"Send Proxy NR_UE failed
\n
"
);
...
...
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