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
1 year ago
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nullPointer
parent
86ca5fdd
Branches unavailable
2024.w43
2024.w42
2024.w41
2024.w40
2024.w39
2024.w38
2024.w36
2024.w35
2024.w34
2024.w33
2024.w32
2024.w31
2024.w30
2024.w29
2024.w28
2024.w27
2024.w26
2024.w25
2024.w24
2024.w23
2024.w22
2024.w21
2024.w18
2024.w17
2024.w16
2024.w15
ARC_1.3
No related merge requests found
Changes
2
Show 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
]);
}
...
...
This diff is collapsed.
Click to expand it.
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
...
...
@@ -785,9 +784,7 @@ rrc_gNB_modify_dedicatedRRCReconfiguration(
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
,
"index %d, QOS flow %d, 5QI %ld
\n
"
,
i
,
qos_flow_index
,
ue_p
->
pduSession
[
i
].
param
.
qos
[
qos_flow_index
].
fiveQI
);
...
...
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