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
ZhouShuya
OpenXG-RAN
Commits
c18281fa
Commit
c18281fa
authored
Feb 08, 2019
by
Matthieu Kanj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rvidx for repetitions
parent
68925645
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
openair1/PHY/LTE_TRANSPORT/ulsch_demodulation_NB_IoT.c
openair1/PHY/LTE_TRANSPORT/ulsch_demodulation_NB_IoT.c
+10
-4
No files found.
openair1/PHY/LTE_TRANSPORT/ulsch_demodulation_NB_IoT.c
View file @
c18281fa
...
@@ -1804,10 +1804,17 @@ void decode_NPUSCH_msg_NB_IoT(PHY_VARS_eNB *eNB,
...
@@ -1804,10 +1804,17 @@ void decode_NPUSCH_msg_NB_IoT(PHY_VARS_eNB *eNB,
///// if last sf of the word
///// if last sf of the word
ulsch_NB_IoT
->
counter_repetitions
--
;
ulsch_NB_IoT
->
counter_repetitions
--
;
if
(
ulsch_NB_IoT
->
Msg3_flag
==
1
)
if
(
npusch_format
==
0
)
// rvidx is used for data and not used otherwise
{
if
(
ulsch_NB_IoT
->
Msg3_flag
==
1
)
// case of msg3
{
{
ulsch_harq
->
rvidx
=
(
ulsch_NB_IoT
->
counter_repetitions
%
2
)
*
2
;
// rvidx toogle for new code word
ulsch_harq
->
rvidx
=
(
ulsch_NB_IoT
->
counter_repetitions
%
2
)
*
2
;
// rvidx toogle for new code word
}
// else {} for other npusch cases ??
}
else
{
/// other NPUSCH cases
ulsch_harq
->
rvidx
=
(((
ulsch_harq
->
rvidx
/
2
)
^
1
)
*
2
);
// rvidx toogle for new code word
}
}
if
(
(
ulsch_NB_IoT
->
counter_sf
==
1
)
&&
(
ulsch_NB_IoT
->
counter_repetitions
==
0
)
)
if
(
(
ulsch_NB_IoT
->
counter_sf
==
1
)
&&
(
ulsch_NB_IoT
->
counter_repetitions
==
0
)
)
{
{
...
@@ -1815,7 +1822,6 @@ void decode_NPUSCH_msg_NB_IoT(PHY_VARS_eNB *eNB,
...
@@ -1815,7 +1822,6 @@ void decode_NPUSCH_msg_NB_IoT(PHY_VARS_eNB *eNB,
ulsch_NB_IoT
->
Msg3_flag
=
0
;
ulsch_NB_IoT
->
Msg3_flag
=
0
;
}
}
}
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////// generalization of RX procedures //////////////////////////////////////////
////////////////////////////////////////////// generalization of RX procedures //////////////////////////////////////////
...
...
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