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
3d430a24
Commit
3d430a24
authored
Jul 09, 2018
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added testing function for SLSCH
parent
a3cb121d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
openair1/PHY/LTE_TRANSPORT/slsch.c
openair1/PHY/LTE_TRANSPORT/slsch.c
+1
-1
openair1/PHY/defs.h
openair1/PHY/defs.h
+1
-0
openair1/SCHED/phy_procedures_lte_ue.c
openair1/SCHED/phy_procedures_lte_ue.c
+1
-1
No files found.
openair1/PHY/LTE_TRANSPORT/slsch.c
View file @
3d430a24
/*
* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
...
...
openair1/PHY/defs.h
View file @
3d430a24
...
...
@@ -1420,6 +1420,7 @@ typedef struct {
uint8_t
sidelink_active
;
uint8_t
SLonly
;
uint8_t
SLsynconly
;
uint8_t
SLSCHtest
;
uint8_t
destination_id
;
// DMRS group-hopping sequences for PSBCH (index 0) and 256 possible PSSCH (indices 1...256)
uint32_t
gh
[
257
][
20
];
...
...
openair1/SCHED/phy_procedures_lte_ue.c
View file @
3d430a24
...
...
@@ -2376,7 +2376,7 @@ void phy_procedures_UE_SL_TX(PHY_VARS_UE *ue,UE_rxtx_proc_t *proc) {
// check for SLSCH
AssertFatal
(
0
==
pthread_mutex_lock
(
&
ue
->
slsch_mutex
),
""
);
if
(
(
ue
->
slsch
=
ue_get_slsch
(
ue
->
Mod_id
,
ue
->
CC_id
,
frame_tx
,
subframe_tx
))
!=
NULL
)
{
if
(
ue
->
SLSCHtest
==
1
)
||
(
ue
->
slsch
=
ue_get_slsch
(
ue
->
Mod_id
,
ue
->
CC_id
,
frame_tx
,
subframe_tx
,
ue
->
SLSCHtest
))
!=
NULL
)
{
check_and_generate_pscch
(
ue
,
frame_tx
,
subframe_tx
);
check_and_generate_pssch
(
ue
,
proc
,
frame_tx
,
subframe_tx
);
}
...
...
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