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
canghaiwuhen
OpenXG-RAN
Commits
a62bfcd7
Commit
a62bfcd7
authored
Apr 20, 2020
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix: rename enum constant for UE telnet triggering
parent
210170d1
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
openair1/PHY/defs_common.h
openair1/PHY/defs_common.h
+1
-1
openair2/LAYER2/MAC/ue_procedures.c
openair2/LAYER2/MAC/ue_procedures.c
+1
-1
openair2/PHY_INTERFACE/phy_stub_UE.c
openair2/PHY_INTERFACE/phy_stub_UE.c
+1
-1
No files found.
openair1/PHY/defs_common.h
View file @
a62bfcd7
...
@@ -869,7 +869,7 @@ typedef enum {
...
@@ -869,7 +869,7 @@ typedef enum {
RA_RESPONSE
=
2
,
RA_RESPONSE
=
2
,
PUSCH
=
3
,
PUSCH
=
3
,
RESYNCH
=
4
,
RESYNCH
=
4
,
INACTIVE
=
5
PRACH_
INACTIVE
=
5
}
UE_MODE_t
;
}
UE_MODE_t
;
#define FOREACH_PARALLEL(GEN) \
#define FOREACH_PARALLEL(GEN) \
...
...
openair2/LAYER2/MAC/ue_procedures.c
View file @
a62bfcd7
...
@@ -158,7 +158,7 @@ void ue_init_mac(module_id_t module_idP) {
...
@@ -158,7 +158,7 @@ void ue_init_mac(module_id_t module_idP) {
if
(
NFAPI_MODE
==
NFAPI_UE_STUB_PNF
)
{
if
(
NFAPI_MODE
==
NFAPI_UE_STUB_PNF
)
{
pthread_mutex_init
(
&
UE_mac_inst
[
module_idP
].
UL_INFO_mutex
,
NULL
);
pthread_mutex_init
(
&
UE_mac_inst
[
module_idP
].
UL_INFO_mutex
,
NULL
);
UE_mac_inst
[
module_idP
].
UE_mode
[
0
]
=
INACTIVE
;
UE_mac_inst
[
module_idP
].
UE_mode
[
0
]
=
PRACH_
INACTIVE
;
UE_mac_inst
[
module_idP
].
first_ULSCH_Tx
=
0
;
UE_mac_inst
[
module_idP
].
first_ULSCH_Tx
=
0
;
UE_mac_inst
[
module_idP
].
SI_Decoded
=
0
;
UE_mac_inst
[
module_idP
].
SI_Decoded
=
0
;
next_ra_frame
=
0
;
next_ra_frame
=
0
;
...
...
openair2/PHY_INTERFACE/phy_stub_UE.c
View file @
a62bfcd7
...
@@ -731,7 +731,7 @@ void dl_config_req_UE_MAC_dci(int sfn,
...
@@ -731,7 +731,7 @@ void dl_config_req_UE_MAC_dci(int sfn,
}
else
if
(
rnti_type
==
2
)
{
}
else
if
(
rnti_type
==
2
)
{
if
(
rnti
==
0xFFFF
)
{
/* SI-RNTI */
if
(
rnti
==
0xFFFF
)
{
/* SI-RNTI */
for
(
int
ue_id
=
0
;
ue_id
<
num_ue
;
ue_id
++
)
{
for
(
int
ue_id
=
0
;
ue_id
<
num_ue
;
ue_id
++
)
{
if
(
UE_mac_inst
[
ue_id
].
UE_mode
[
0
]
==
NOT_SYNCHED
||
UE_mac_inst
[
ue_id
].
UE_mode
[
0
]
==
INACTIVE
)
if
(
UE_mac_inst
[
ue_id
].
UE_mode
[
0
]
==
NOT_SYNCHED
||
UE_mac_inst
[
ue_id
].
UE_mode
[
0
]
==
PRACH_
INACTIVE
)
continue
;
continue
;
ue_decode_si
(
ue_id
,
0
,
sfn
,
0
,
ue_decode_si
(
ue_id
,
0
,
sfn
,
0
,
...
...
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