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
spbro
OpenXG-RAN
Commits
13d33163
Commit
13d33163
authored
Mar 14, 2024
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nullPointer
parent
86ca5fdd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
11 deletions
+8
-11
openair1/SIMULATION/LTE_PHY/syncsim.c
openair1/SIMULATION/LTE_PHY/syncsim.c
+3
-3
openair2/RRC/NR/rrc_gNB.c
openair2/RRC/NR/rrc_gNB.c
+5
-8
No files found.
openair1/SIMULATION/LTE_PHY/syncsim.c
View file @
13d33163
...
...
@@ -312,7 +312,7 @@ int main(int argc, char **argv) {
#ifdef IFFT_FPGA
int
**
txdataF2
;
#endif
int
**
txdata
,
**
txdata1
=
NULL
,
**
txdata2
=
NULL
;
int
**
txdata
,
**
txdata1
=
NULL
,
**
txdata2
=
NULL
;
double
**
s_re
,
**
s_im
,
**
s_re1
,
**
s_im1
,
**
s_re2
,
**
s_im2
,
**
r_re
,
**
r_im
,
**
r_re1
,
**
r_im1
,
**
r_re2
,
**
r_im2
;
double
iqim
=
0
.
0
;
unsigned
char
pbch_pdu
[
6
];
...
...
@@ -1180,12 +1180,12 @@ int main(int argc, char **argv) {
s_re
[
aa
][
i
]
=
tmp_re
;
s_im
[
aa
][
i
]
=
tmp_im
;
if
(
interf1
>-
20
)
{
if
(
interf1
>-
20
&&
txdata1
)
{
s_re1
[
aa
][
i
]
=
((
double
)(((
short
*
)
txdata1
[
aa
]))[(
i
<<
1
)]);
s_im1
[
aa
][
i
]
=
((
double
)(((
short
*
)
txdata1
[
aa
]))[(
i
<<
1
)
+
1
]);
}
if
(
interf2
>-
20
)
{
if
(
interf2
>-
20
&&
txdata2
)
{
s_re2
[
aa
][
i
]
=
((
double
)(((
short
*
)
txdata2
[
aa
]))[(
i
<<
1
)]);
s_im2
[
aa
][
i
]
=
((
double
)(((
short
*
)
txdata2
[
aa
]))[(
i
<<
1
)
+
1
]);
}
...
...
openair2/RRC/NR/rrc_gNB.c
View file @
13d33163
...
...
@@ -729,7 +729,6 @@ rrc_gNB_modify_dedicatedRRCReconfiguration(
struct
NR_RRCReconfiguration_v1530_IEs__dedicatedNAS_MessageList
*
dedicatedNAS_MessageList
=
CALLOC
(
1
,
sizeof
(
*
dedicatedNAS_MessageList
));
NR_DRB_ToAddMod_t
*
DRB_config
=
NULL
;
for
(
int
i
=
0
;
i
<
ue_p
->
nb_of_pdusessions
;
i
++
)
{
// bypass the new and already configured pdu sessions
...
...
@@ -784,13 +783,11 @@ rrc_gNB_modify_dedicatedRRCReconfiguration(
ue_p
->
pduSession
[
i
].
cause_value
=
NGAP_CauseRadioNetwork_not_supported_5QI_value
;
continue
;
}
LOG_I
(
NR_RRC
,
"PDU SESSION ID %ld, DRB ID %ld (index %d), QOS flow %d, 5QI %ld
\n
"
,
DRB_config
->
cnAssociation
->
choice
.
sdap_Config
->
pdu_Session
,
DRB_config
->
drb_Identity
,
i
,
qos_flow_index
,
ue_p
->
pduSession
[
i
].
param
.
qos
[
qos_flow_index
].
fiveQI
);
LOG_I
(
NR_RRC
,
"index %d, QOS flow %d, 5QI %ld
\n
"
,
i
,
qos_flow_index
,
ue_p
->
pduSession
[
i
].
param
.
qos
[
qos_flow_index
].
fiveQI
);
}
ue_p
->
pduSession
[
i
].
status
=
PDU_SESSION_STATUS_DONE
;
...
...
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