Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
openairinterface5G
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Merge Requests
24
Merge Requests
24
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
oai
openairinterface5G
Commits
f65150aa
Commit
f65150aa
authored
Mar 17, 2017
by
Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#226 fix incorrect resetting downlink ACK/NACK in the middle of UE_TX processing
parent
a77082c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
openair1/SCHED/phy_procedures_lte_ue.c
openair1/SCHED/phy_procedures_lte_ue.c
+5
-5
No files found.
openair1/SCHED/phy_procedures_lte_ue.c
View file @
f65150aa
...
...
@@ -729,7 +729,7 @@ uint16_t get_n1_pucch(PHY_VARS_UE *ue,
}
else
if
(
subframe
==
8
)
{
// ACK subframes 4
candidate_dl
[
0
]
=
4
;
}
else
{
LOG_E
(
PHY
,
"[UE%d] : Frame %d phy_procedures_lte.c: get_n1pucch, illegal subframe %d for tdd_config %d
\n
"
,
LOG_E
(
PHY
,
"[UE%d] : Frame %d phy_procedures_lte.c: get_n1pucch, illegal
tx-
subframe %d for tdd_config %d
\n
"
,
ue
->
Mod_id
,
proc
->
frame_tx
,
subframe
,
frame_parms
->
tdd_config
);
return
(
0
);
}
...
...
@@ -743,8 +743,8 @@ uint16_t get_n1_pucch(PHY_VARS_UE *ue,
}
}
if
(
last_dl
>=
10
)
{
LOG_E
(
PHY
,
"[UE%d] : Frame %d phy_procedures_lte.c: get_n1pucch, illegal
subframe %d
for tdd_config %d
\n
"
,
ue
->
Mod_id
,
proc
->
frame_tx
,
last_dl
,
frame_parms
->
tdd_config
);
LOG_E
(
PHY
,
"[UE%d] : Frame %d phy_procedures_lte.c: get_n1pucch, illegal
rx-subframe %d (tx-subframe %d)
for tdd_config %d
\n
"
,
ue
->
Mod_id
,
proc
->
frame_tx
,
last_dl
,
subframe
,
frame_parms
->
tdd_config
);
return
(
0
);
}
...
...
@@ -1775,13 +1775,13 @@ void ue_pucch_procedures(PHY_VARS_UE *ue,UE_rxtx_proc_t *proc,uint8_t eNB_id,uin
}
}
ack_status_cw0
=
res
et_ack
(
&
ue
->
frame_parms
,
ack_status_cw0
=
g
et_ack
(
&
ue
->
frame_parms
,
ue
->
dlsch
[
proc
->
subframe_rx
&
0x1
][
eNB_id
][
0
]
->
harq_ack
,
subframe_tx
,
pucch_ack_payload
,
0
);
ack_status_cw1
=
res
et_ack
(
&
ue
->
frame_parms
,
ack_status_cw1
=
g
et_ack
(
&
ue
->
frame_parms
,
ue
->
dlsch
[
proc
->
subframe_rx
&
0x1
][
eNB_id
][
1
]
->
harq_ack
,
subframe_tx
,
pucch_ack_payload
,
...
...
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