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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
5803e203
Commit
5803e203
authored
Oct 17, 2025
by
Rakesh Mundlamuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix to avoid error after enabling DEBUG_CH
parent
4b102ea2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
openair1/SIMULATION/TOOLS/multipath_channel.c
openair1/SIMULATION/TOOLS/multipath_channel.c
+2
-2
No files found.
openair1/SIMULATION/TOOLS/multipath_channel.c
View file @
5803e203
...
...
@@ -68,7 +68,7 @@ void __attribute__ ((no_sanitize_address)) multipath_channel(channel_desc_t *des
#ifdef DEBUG_CH
for
(
l
=
0
;
l
<
(
int
)
desc
->
channel_length
;
l
++
)
{
for
(
int
l
=
0
;
l
<
(
int
)
desc
->
channel_length
;
l
++
)
{
printf
(
"%p (%f,%f) "
,
desc
->
ch
[
0
],
desc
->
ch
[
0
][
l
].
x
,
desc
->
ch
[
0
][
l
].
y
);
}
...
...
@@ -168,7 +168,7 @@ void __attribute__ ((no_sanitize_address)) multipath_channel(channel_desc_t *des
}
#ifdef DEBUG_CH
for
(
l
=
0
;
l
<
(
int
)
desc
->
channel_length
;
l
++
)
{
for
(
int
l
=
0
;
l
<
(
int
)
desc
->
channel_length
;
l
++
)
{
printf
(
"ch[%i] = (%f, %f)
\n
"
,
l
,
desc
->
ch
[
0
][
l
].
r
,
desc
->
ch
[
0
][
l
].
i
);
}
#endif
...
...
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