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
Michael Black
OpenXG-RAN
Commits
71e9b955
Commit
71e9b955
authored
Jun 25, 2018
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SCI RX procedures for multiple flows
parent
7a00e05b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
10 deletions
+14
-10
openair1/PHY/LTE_TRANSPORT/slsch.c
openair1/PHY/LTE_TRANSPORT/slsch.c
+14
-10
No files found.
openair1/PHY/LTE_TRANSPORT/slsch.c
View file @
71e9b955
...
...
@@ -1113,18 +1113,22 @@ void rx_slcch(PHY_VARS_UE *ue,UE_rxtx_proc_t *proc,int frame_rx,int subframe_rx)
// 2 SLSCH/SLCCH resource block regions subframe times number of resources blocks per slot times 2 slots
uint32_t
M_RB_PSCCH_RP
=
slsch
->
N_SL_RB_SC
*
LPSCCH
<<
1
;
AssertFatal
(
slsch
->
n_pscch
<
(
M_RB_PSCCH_RP
>>
1
)
*
LPSCCH
,
"n_pscch not in 0..%d
\n
"
,
((
M_RB_PSCCH_RP
>>
1
)
*
LPSCCH
)
-
1
);
// hard-coded to transmission mode one for now (Section 14.2.1.1 from 36.213 Rel14.3)
uint32_t
a1
=
slsch
->
n_pscch
/
LPSCCH
;
uint32_t
a2
=
a1
+
slsch
->
n_pscch
/
LPSCCH
+
(
M_RB_PSCCH_RP
>>
1
);
uint32_t
b1
=
slsch
->
n_pscch
%
LPSCCH
;
uint32_t
b2
=
(
slsch
->
n_pscch
+
1
+
(
a1
%
(
LPSCCH
-
1
)))
%
LPSCCH
;
if
(
absSF_modP
==
b1
)
pscch_decoding
(
ue
,
proc
,
frame_rx
,
subframe_rx
,
a1
,
0
);
else
if
(
absSF_modP
==
b2
)
pscch_decoding
(
ue
,
proc
,
frame_rx
,
subframe_rx
,
a2
,
1
);
else
return
;
//AssertFatal(slsch->n_pscch < (M_RB_PSCCH_RP>>1)*LPSCCH,"n_pscch not in 0..%d\n",
// ((M_RB_PSCCH_RP>>1)*LPSCCH)-1);
for
(
slsch
->
n_pscch
=
0
;
slsch
->
npscch
<
((
M_RB_PSCCH_RP
>>
1
)
*
LPSCCH
)
;
slsch
->
n_pscch
++
)
{
// hard-coded to transmission mode one for now (Section 14.2.1.1 from 36.213 Rel14.3)
uint32_t
a1
=
slsch
->
n_pscch
/
LPSCCH
;
uint32_t
a2
=
a1
+
slsch
->
n_pscch
/
LPSCCH
+
(
M_RB_PSCCH_RP
>>
1
);
uint32_t
b1
=
slsch
->
n_pscch
%
LPSCCH
;
uint32_t
b2
=
(
slsch
->
n_pscch
+
1
+
(
a1
%
(
LPSCCH
-
1
)))
%
LPSCCH
;
if
(
absSF_modP
==
b1
)
pscch_decoding
(
ue
,
proc
,
frame_rx
,
subframe_rx
,
a1
,
0
);
else
if
(
absSF_modP
==
b2
)
pscch_decoding
(
ue
,
proc
,
frame_rx
,
subframe_rx
,
a2
,
1
);
else
continue
;
}
}
...
...
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