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
lizhongxiao
OpenXG-RAN
Commits
315f90e2
Commit
315f90e2
authored
Jan 17, 2024
by
mir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make it compile after rebase
parent
7d5ea3e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
executables/nr-ue.c
executables/nr-ue.c
+3
-3
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_decoding.c
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_decoding.c
+1
-1
No files found.
executables/nr-ue.c
View file @
315f90e2
...
@@ -963,7 +963,7 @@ void *UE_thread(void *arg)
...
@@ -963,7 +963,7 @@ void *UE_thread(void *arg)
assert
(
curMsgRx
!=
NULL
&&
"Memory exhausted"
);
assert
(
curMsgRx
!=
NULL
&&
"Memory exhausted"
);
*
curMsgRx
=
(
nr_rxtx_thread_data_t
){.
proc
=
curMsg
.
proc
,
.
UE
=
UE
};
*
curMsgRx
=
(
nr_rxtx_thread_data_t
){.
proc
=
curMsg
.
proc
,
.
UE
=
UE
};
UE_dl_preprocessing
(
UE
,
&
curMsgRx
->
proc
,
tx_wait_for_dlsch
,
&
curMsgRx
->
phy_data
);
UE_dl_preprocessing
(
UE
,
&
curMsgRx
->
proc
,
tx_wait_for_dlsch
,
&
curMsgRx
->
phy_data
);
t
=
(
task_t
)
{.
func
=
UE_dl_processing
,
.
args
=
curMsgRx
};
t
ask_t
t
=
{.
func
=
UE_dl_processing
,
.
args
=
curMsgRx
};
async_task_manager
(
&
(
get_nrUE_params
()
->
man
),
t
);
async_task_manager
(
&
(
get_nrUE_params
()
->
man
),
t
);
// Start TX slot processing here. It runs in parallel with RX slot processing
// Start TX slot processing here. It runs in parallel with RX slot processing
...
@@ -976,8 +976,8 @@ void *UE_thread(void *arg)
...
@@ -976,8 +976,8 @@ void *UE_thread(void *arg)
curMsgTx
->
UE
=
UE
;
curMsgTx
->
UE
=
UE
;
curMsgTx
->
tx_wait_for_dlsch
=
tx_wait_for_dlsch
[
curMsgTx
->
proc
.
nr_slot_tx
];
curMsgTx
->
tx_wait_for_dlsch
=
tx_wait_for_dlsch
[
curMsgTx
->
proc
.
nr_slot_tx
];
tx_wait_for_dlsch
[
curMsgTx
->
proc
.
nr_slot_tx
]
=
0
;
tx_wait_for_dlsch
[
curMsgTx
->
proc
.
nr_slot_tx
]
=
0
;
curMsgTx
->
elt
=
new
Elt
;
curMsgTx
->
elt
=
new
Tx
;
t
ask_t
t
=
{.
func
=
processSlotTX
,
.
args
=
curMsgTx
};
t
=
(
task_t
)
{.
func
=
processSlotTX
,
.
args
=
curMsgTx
};
async_task_manager
(
&
(
get_nrUE_params
()
->
man
),
t
);
async_task_manager
(
&
(
get_nrUE_params
()
->
man
),
t
);
// Wait for TX slot processing to finish
// Wait for TX slot processing to finish
...
...
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_decoding.c
View file @
315f90e2
...
@@ -80,7 +80,7 @@ static bool nr_ue_postDecode(PHY_VARS_NR_UE *phy_vars_ue,
...
@@ -80,7 +80,7 @@ static bool nr_ue_postDecode(PHY_VARS_NR_UE *phy_vars_ue,
int
b_size
,
int
b_size
,
uint8_t
b
[
b_size
],
uint8_t
b
[
b_size
],
int
*
num_seg_ok
,
int
*
num_seg_ok
,
UE_nr_rxtx_proc_t
*
proc
)
UE_nr_rxtx_proc_t
const
*
proc
)
{
{
NR_DL_UE_HARQ_t
*
harq_process
=
rdata
->
harq_process
;
NR_DL_UE_HARQ_t
*
harq_process
=
rdata
->
harq_process
;
NR_UE_DLSCH_t
*
dlsch
=
(
NR_UE_DLSCH_t
*
)
rdata
->
dlsch
;
NR_UE_DLSCH_t
*
dlsch
=
(
NR_UE_DLSCH_t
*
)
rdata
->
dlsch
;
...
...
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