Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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 UE
Commits
cb97ebcf
Commit
cb97ebcf
authored
Apr 16, 2021
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
using common configuration complete to signal sib1 decoded
parent
11889c0e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
openair2/LAYER2/NR_MAC_UE/mac_defs.h
openair2/LAYER2/NR_MAC_UE/mac_defs.h
+0
-3
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
+2
-1
openair2/RRC/NR_UE/rrc_UE.c
openair2/RRC/NR_UE/rrc_UE.c
+1
-1
No files found.
openair2/LAYER2/NR_MAC_UE/mac_defs.h
View file @
cb97ebcf
...
...
@@ -365,9 +365,6 @@ typedef struct {
/// SSB index from MIB decoding
uint8_t
mib_ssb
;
/// Flag for SIB1
uint8_t
sib1_received
;
/// Last NDI of UL HARQ processes
uint8_t
UL_ndi
[
NR_MAX_HARQ_PROCESSES
];
...
...
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
View file @
cb97ebcf
...
...
@@ -152,7 +152,8 @@ int8_t nr_ue_decode_mib(module_id_t module_id,
uint32_t
band
;
uint16_t
ssb_start_symbol
;
if
((
get_softmodem_params
()
->
sa
==
1
)
&&
(
mac
->
sib1_received
==
0
))
{
if
((
get_softmodem_params
()
->
sa
==
1
)
&&
(
mac
->
common_configuration_complete
==
0
))
{
scs_ssb
=
get_softmodem_params
()
->
numerology
;
band
=
mac
->
nr_band
;
ssb_start_symbol
=
get_ssb_start_symbol
(
band
,
scs_ssb
,
ssb_index
);
...
...
openair2/RRC/NR_UE/rrc_UE.c
View file @
cb97ebcf
...
...
@@ -1189,7 +1189,7 @@ int8_t nr_rrc_ue_decode_NR_BCCH_DL_SCH_Message(module_id_t module_id,
check_requested_SI_List
(
module_id
,
NR_UE_rrc_inst
[
module_id
].
requested_SI_List
,
*
sib1
);
if
(
nr_rrc_get_state
(
module_id
)
<=
RRC_STATE_IDLE_NR
)
{
NR_UE_rrc_inst
[
module_id
].
ra_trigger
=
INITIAL_ACCESS_FROM_RRC_IDLE
;
LOG_I
(
PHY
,
"Setting state to NR_RRC_SI_RECEIVED
\n
"
);
LOG_I
(
NR_RRC
,
"Setting state to NR_RRC_SI_RECEIVED
\n
"
);
nr_rrc_set_state
(
module_id
,
NR_RRC_SI_RECEIVED
);
}
// take ServingCellConfigCommon and configure L1/L2
...
...
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