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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
a702fd55
Commit
a702fd55
authored
Mar 17, 2021
by
Sakthivel Velumani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed blocking bug
parent
cdda2a4a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
executables/nr-ue.c
executables/nr-ue.c
+1
-0
executables/nr-uesoftmodem.c
executables/nr-uesoftmodem.c
+2
-2
openair1/PHY/defs_common.h
openair1/PHY/defs_common.h
+1
-0
No files found.
executables/nr-ue.c
View file @
a702fd55
...
...
@@ -767,6 +767,7 @@ void *UE_thread(void *arg) {
memset
(
txp
[
i
],
0
,
writeBlockSize
);
nbSlotProcessing
++
;
LOG_D
(
PHY
,
"Number of slots being processed at the moment: %d
\n
"
,
nbSlotProcessing
);
pushTpool
(
&
(
get_nrUE_params
()
->
Tpool
),
msgToPush
);
}
// while !oai_exit
...
...
executables/nr-uesoftmodem.c
View file @
a702fd55
...
...
@@ -220,8 +220,8 @@ void init_tpools(uint8_t nun_dlsch_threads) {
memcpy
(
params
,
"N"
,
1
);
}
else
{
params
=
calloc
(
1
,(
RX_NB_TH
*
3
)
+
1
);
for
(
int
i
=
0
;
i
<
RX_NB_TH
;
i
++
)
{
params
=
calloc
(
1
,(
RX_NB_TH
*
NB_TH_SLOT
*
3
)
+
1
);
for
(
int
i
=
0
;
i
<
RX_NB_TH
*
NB_TH_SLOT
;
i
++
)
{
memcpy
(
params
+
(
i
*
3
),
"-1,"
,
3
);
}
}
...
...
openair1/PHY/defs_common.h
View file @
a702fd55
...
...
@@ -75,6 +75,7 @@
#define RX_NB_TH_MAX 2
#define RX_NB_TH 1
#define NB_TH_SLOT 2
#define RX_NB_TH_DL 14
#define LTE_SLOTS_PER_SUBFRAME 2
...
...
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