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
1f8e9583
Commit
1f8e9583
authored
Jul 21, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/fix_warnings_gcc13' into integration_2023_w29
parents
526c84f4
e04554dc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
9 deletions
+8
-9
common/utils/T/tracer/to_vcd.c
common/utils/T/tracer/to_vcd.c
+3
-5
openair1/SCHED_UE/phy_procedures_lte_ue.c
openair1/SCHED_UE/phy_procedures_lte_ue.c
+2
-2
openair1/SIMULATION/TOOLS/random_channel.c
openair1/SIMULATION/TOOLS/random_channel.c
+3
-2
No files found.
common/utils/T/tracer/to_vcd.c
View file @
1f8e9583
...
...
@@ -345,11 +345,9 @@ int main(int n, char **v)
/* setup traces */
for
(
i
=
0
;
i
<
nvars
;
i
++
)
{
char
format
[
256
];
if
(
strlen
(
vars
[
i
].
arg
)
+
strlen
(
vars
[
i
].
vcd_name
)
>
256
-
16
)
abort
();
sprintf
(
format
,
"%c [%s] %s"
,
vars
[
i
].
boolean
?
'b'
:
'l'
,
vars
[
i
].
arg
,
vars
[
i
].
vcd_name
);
int
ret
=
snprintf
(
format
,
256
,
"%c [%s] %s"
,
vars
[
i
].
boolean
?
'b'
:
'l'
,
vars
[
i
].
arg
,
vars
[
i
].
vcd_name
);
if
(
ret
>
255
)
abort
();
textlog
=
new_textlog
(
h
,
database
,
vars
[
i
].
event
,
format
);
logger_add_view
(
textlog
,
vcd_view
);
on_off
(
database
,
vars
[
i
].
event
,
is_on
,
1
);
...
...
openair1/SCHED_UE/phy_procedures_lte_ue.c
View file @
1f8e9583
...
...
@@ -644,7 +644,7 @@ uint16_t get_n1_pucch(PHY_VARS_UE *ue,
LTE_DL_FRAME_PARMS
*
frame_parms
=&
ue
->
frame_parms
;
uint8_t
nCCE0
,
nCCE1
,
nCCE2
,
nCCE3
,
harq_ack1
,
harq_ack0
,
harq_ack3
,
harq_ack2
;
ANFBmode_t
bundling_flag
;
uint16_t
n1_pucch0
=
0
,
n1_pucch1
=
0
,
n1_pucch2
=
0
,
n1_pucch3
=
0
,
n1_pucch_inter
;
uint16_t
n1_pucch0
=
0
,
n1_pucch1
=
0
,
n1_pucch2
=
0
,
n1_pucch3
=
0
,
n1_pucch_inter
=
0
;
static
uint8_t
candidate_dl
[
9
];
// which downlink(s) the current ACK/NACK is associating to
uint8_t
last_dl
=
0xff
;
// the last downlink with valid DL-DCI. for calculating the PUCCH resource index
int
sf
;
...
...
@@ -951,7 +951,7 @@ uint16_t get_n1_pucch(PHY_VARS_UE *ue,
// proc->frame_tx%1024,
// proc->subframe_tx,n1_pucch_inter,
// b[0],b[1]);
return
(
n1_pucch_inter
)
;
return
n1_pucch_inter
;
}
else
if
((
bundling_flag
==
multiplexing
)
&&
(
SR
==
0
))
{
// Table 10.1
if
(
subframe
==
3
)
{
LOG_I
(
PHY
,
"sbuframe=%d
\n
"
,
subframe
);
...
...
openair1/SIMULATION/TOOLS/random_channel.c
View file @
1f8e9583
...
...
@@ -1723,8 +1723,9 @@ void free_channel_desc_scm(channel_desc_t *ch) {
free
(
ch
);
}
void
set_channeldesc_owner
(
channel_desc_t
*
cdesc
,
uint32_t
module_id
)
{
cdesc
->
module_id
=
module_id
;
void
set_channeldesc_owner
(
channel_desc_t
*
cdesc
,
channelmod_moduleid_t
module_id
)
{
cdesc
->
module_id
=
module_id
;
}
void
set_channeldesc_name
(
channel_desc_t
*
cdesc
,
char
*
modelname
)
{
...
...
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