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
19c59279
Commit
19c59279
authored
May 04, 2023
by
Vijay Chadachan
Committed by
Vijay C
May 23, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed the TTCN connection issue and MAC changes for crash
parent
506df7c3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
10 deletions
+14
-10
openair2/PHY_INTERFACE/IF_Module.c
openair2/PHY_INTERFACE/IF_Module.c
+8
-8
openair3/SS/ss_eNB_port_man_task.c
openair3/SS/ss_eNB_port_man_task.c
+6
-2
No files found.
openair2/PHY_INTERFACE/IF_Module.c
View file @
19c59279
...
...
@@ -762,7 +762,7 @@ void UL_indication(UL_IND_t *UL_info, void *proc) {
if
(
NFAPI_MODE
!=
NFAPI_MODE_PNF
)
{
/* MultiCell: Condition modified for Multiple CC */
if
(
ifi
->
CC_mask
<
((
1
<<
RC
.
nb_CC
[
module_id
])
-
1
))
{
if
(
ifi
->
CC_mask
<
((
1
<<
RC
.
nb_
mac_
CC
[
module_id
])
-
1
))
{
ifi
->
current_frame
=
UL_info
->
frame
;
ifi
->
current_subframe
=
UL_info
->
subframe
;
}
else
{
...
...
@@ -792,11 +792,11 @@ void UL_indication(UL_IND_t *UL_info, void *proc) {
if
(
NFAPI_MODE
!=
NFAPI_MODE_PNF
)
{
/* MultiCell: Condition modified for Multiple CC */
if
(
ifi
->
CC_mask
==
((
1
<<
RC
.
nb_CC
[
module_id
])
-
1
))
{
if
(
ifi
->
CC_mask
==
((
1
<<
RC
.
nb_
mac_
CC
[
module_id
])
-
1
))
{
eNB_dlsch_ulsch_scheduler
(
module_id
,
(
UL_info
->
frame
+
((
UL_info
->
subframe
>
(
9
-
sf_ahead
))
?
1
:
0
))
%
1024
,
(
UL_info
->
subframe
+
sf_ahead
)
%
10
);
for
(
int
CC_Id
=
0
;
CC_Id
<
RC
.
nb_CC
[
module_id
];
CC_Id
++
)
{
for
(
int
CC_Id
=
0
;
CC_Id
<
RC
.
nb_
mac_
CC
[
module_id
];
CC_Id
++
)
{
ifi
->
CC_mask
=
0
;
sched_info
->
module_id
=
module_id
;
sched_info
->
CC_id
=
CC_Id
;
...
...
openair3/SS/ss_eNB_port_man_task.c
View file @
19c59279
...
...
@@ -569,13 +569,14 @@ void *ss_eNB_port_man_acp_task(void *arg)
bool
ss_eNB_port_man_handle_enquiryTiming
(
struct
SYSTEM_CTRL_REQ
*
sys_req
)
{
struct
SYSTEM_CTRL_CNF
cnf
;
const
size_t
msgS
ize
=
16
*
1024
;
unsigned
char
*
buffer
=
(
unsigned
char
*
)
acpMalloc
(
msgS
ize
);
const
size_t
s
ize
=
16
*
1024
;
unsigned
char
*
buffer
=
(
unsigned
char
*
)
acpMalloc
(
s
ize
);
int
status
=
0
;
if
(
!
buffer
)
return
false
;
size_t
msgSize
=
size
;
memset
(
&
cnf
,
0
,
sizeof
(
cnf
));
cnf
.
Common
.
CellId
=
sys_req
->
Common
.
CellId
;
...
...
@@ -585,10 +586,13 @@ bool ss_eNB_port_man_handle_enquiryTiming(struct SYSTEM_CTRL_REQ *sys_req)
cnf
.
Common
.
TimingInfo
.
d
=
TimingInfo_Type_SubFrame
;
cnf
.
Common
.
TimingInfo
.
v
.
SubFrame
.
SFN
.
d
=
SystemFrameNumberInfo_Type_Number
;
cnf
.
Common
.
TimingInfo
.
v
.
SubFrame
.
SFN
.
v
.
Number
=
SS_context
.
sfn
;
cnf
.
Common
.
TimingInfo
.
v
.
SubFrame
.
Subframe
.
d
=
SubFrameInfo_Type_Number
;
cnf
.
Common
.
TimingInfo
.
v
.
SubFrame
.
Subframe
.
v
.
Number
=
SS_context
.
sf
;
cnf
.
Common
.
TimingInfo
.
v
.
SubFrame
.
HSFN
.
d
=
SystemFrameNumberInfo_Type_Number
;
cnf
.
Common
.
TimingInfo
.
v
.
SubFrame
.
HSFN
.
v
.
Number
=
SS_context
.
hsfn
;
cnf
.
Common
.
TimingInfo
.
v
.
SubFrame
.
Slot
.
d
=
SlotTimingInfo_Type_FirstSlot
;
cnf
.
Common
.
TimingInfo
.
v
.
SubFrame
.
Slot
.
v
.
FirstSlot
=
true
;
...
...
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