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
8f116f68
Commit
8f116f68
authored
Dec 03, 2025
by
Bartosz Podrygajlo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vrtsim: fix assert for number of TX antennas
parent
b5aad595
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
radio/vrtsim/vrtsim.c
radio/vrtsim/vrtsim.c
+1
-1
No files found.
radio/vrtsim/vrtsim.c
View file @
8f116f68
...
@@ -471,7 +471,7 @@ static int vrtsim_write_with_chanmod(vrtsim_state_t *vrtsim_state,
...
@@ -471,7 +471,7 @@ static int vrtsim_write_with_chanmod(vrtsim_state_t *vrtsim_state,
// Indicates what samples are saves in saved_samples
// Indicates what samples are saves in saved_samples
static
openair0_timestamp
last_timestamp
=
0
;
static
openair0_timestamp
last_timestamp
=
0
;
AssertFatal
(
nbAnt
<
MAX_NUM_ANTENNAS_TX
,
"Number of antennas %d exceeds maximum %d
\n
"
,
nbAnt
,
MAX_NUM_ANTENNAS_TX
);
AssertFatal
(
nbAnt
<
=
MAX_NUM_ANTENNAS_TX
,
"Number of antennas %d exceeds maximum %d
\n
"
,
nbAnt
,
MAX_NUM_ANTENNAS_TX
);
for
(
int
aarx
=
0
;
aarx
<
vrtsim_state
->
peer_info
.
num_rx_antennas
;
aarx
++
)
{
for
(
int
aarx
=
0
;
aarx
<
vrtsim_state
->
peer_info
.
num_rx_antennas
;
aarx
++
)
{
notifiedFIFO_elt_t
*
task
=
newNotifiedFIFO_elt
(
sizeof
(
channel_modelling_args_t
),
0
,
NULL
,
perform_channel_modelling
);
notifiedFIFO_elt_t
*
task
=
newNotifiedFIFO_elt
(
sizeof
(
channel_modelling_args_t
),
0
,
NULL
,
perform_channel_modelling
);
channel_modelling_args_t
*
args
=
(
channel_modelling_args_t
*
)
NotifiedFifoData
(
task
);
channel_modelling_args_t
*
args
=
(
channel_modelling_args_t
*
)
NotifiedFifoData
(
task
);
...
...
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