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
常顺宇
OpenXG-RAN
Commits
be6e0e03
Commit
be6e0e03
authored
6 years ago
by
Matthieu Kanj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
segmentation fault fix for UL indication
parent
ddbcbac9
develop-nb-iot-merge-w-conflicts
develop-nb-iot
develop-nb-iot-merge
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
11 deletions
+14
-11
openair1/SCHED/phy_procedures_lte_eNb.c
openair1/SCHED/phy_procedures_lte_eNb.c
+12
-11
targets/SIMU/USER/init_lte.c
targets/SIMU/USER/init_lte.c
+2
-0
No files found.
openair1/SCHED/phy_procedures_lte_eNb.c
View file @
be6e0e03
...
...
@@ -2280,15 +2280,9 @@ void prach_procedures_NB_IoT(PHY_VARS_eNB *eNB) {
detection
=
rx_nprach_NB_IoT
(
eNB
,
frame
,
subframe
,
rnti
,
preamble_index
,
timing_advance_preamble
);
}
/*
if(detection == 1) ////////////////////////// to be moved to handle_rach_NB_IoT
if
(
detection
==
1
)
////////////////////////// to be moved to handle_rach_NB_IoT
{
** initiate_ra_proc(UL_info->module_id,
UL_info->CC_id,
NFAPI_SFNSF2SFN(UL_info->rach_ind.sfn_sf),
NFAPI_SFNSF2SF(UL_info->rach_ind.sfn_sf),
UL_info->rach_ind.rach_indication_body.preamble_list[0].preamble_rel8.preamble,
UL_info->rach_ind.rach_indication_body.preamble_list[0].preamble_rel8.timing_advance,
UL_info->rach_ind.rach_indication_body.preamble_list[0].preamble_rel8.rnti); **
pthread_mutex_lock
(
&
eNB
->
UL_INFO_mutex
);
//////////////////////////////////////////////////////////
...
...
@@ -2300,10 +2294,17 @@ void prach_procedures_NB_IoT(PHY_VARS_eNB *eNB) {
eNB
->
UL_INFO
.
frame
=
frame
;
eNB
->
UL_INFO
.
subframe
=
subframe
;
//eNB->UL_INFO.hypersfn =
;
eNB
->
UL_INFO
.
hypersfn
=
eNB
->
proc
.
proc_rxtx
[
0
].
HFN
;
pthread_mutex_unlock
(
&
eNB
->
UL_INFO_mutex
);
/*initiate_ra_proc(UL_info->module_id,
UL_info->CC_id,
NFAPI_SFNSF2SFN(UL_info->rach_ind.sfn_sf),
NFAPI_SFNSF2SF(UL_info->rach_ind.sfn_sf),
UL_info->rach_ind.rach_indication_body.preamble_list[0].preamble_rel8.preamble,
UL_info->rach_ind.rach_indication_body.preamble_list[0].preamble_rel8.timing_advance,
UL_info->rach_ind.rach_indication_body.preamble_list[0].preamble_rel8.rnti); */
mac_xface
->
initiate_ra_proc
(
eNB
->
Mod_id
,
eNB
->
CC_id
,
...
...
@@ -2311,7 +2312,7 @@ void prach_procedures_NB_IoT(PHY_VARS_eNB *eNB) {
preamble_index
[
0
],
(
int16_t
)
timing_advance_preamble
[
0
],
0
,
subframe
,
0
);
}
*/
}
}
//////////////////////////////////////////////////////////// END ///////////////////////////////////////////////////////////
...
...
This diff is collapsed.
Click to expand it.
targets/SIMU/USER/init_lte.c
View file @
be6e0e03
...
...
@@ -146,6 +146,8 @@ PHY_VARS_eNB* init_lte_eNB(LTE_DL_FRAME_PARMS *frame_parms,
PHY_vars_eNB
->
ndlsch_SIB1
=
new_eNB_dlsch_NB_IoT
(
1
,
frame_parms
);
// frame_parms is not used , to be removed is not used in futur
PHY_vars_eNB
->
ndlsch_SIB23
=
new_eNB_dlsch_NB_IoT
(
1
,
frame_parms
);
PHY_vars_eNB
->
ndlsch_RAR
=
new_eNB_dlsch_NB_IoT
(
1
,
frame_parms
);
PHY_vars_eNB
->
UL_INFO
.
nrach_ind
.
nrach_pdu_list
=
(
nfapi_nrach_indication_pdu_t
*
)
malloc16
(
sizeof
(
nfapi_nrach_indication_pdu_t
));
PHY_vars_eNB
->
ndlsch_SIB1
->
rnti
=
0xffff
;
PHY_vars_eNB
->
ndlsch_SIB23
->
rnti
=
0xffff
;
...
...
This diff is collapsed.
Click to expand it.
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