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
wangjie
OpenXG-RAN
Commits
7b7b63f3
Commit
7b7b63f3
authored
Nov 04, 2019
by
frtabu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove warnings after rease
parent
fba31941
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
openair1/PHY/NR_REFSIG/ul_ref_seq_nr.c
openair1/PHY/NR_REFSIG/ul_ref_seq_nr.c
+2
-2
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
+1
-0
openair1/PHY/NR_UE_TRANSPORT/pss_nr.c
openair1/PHY/NR_UE_TRANSPORT/pss_nr.c
+2
-2
No files found.
openair1/PHY/NR_REFSIG/ul_ref_seq_nr.c
View file @
7b7b63f3
...
...
@@ -80,7 +80,7 @@ int16_t *base_sequence_less_than_36(unsigned int M_ZC,
break
;
default:
printf
(
"function base_sequence_less_than 36_: unsupported base sequence size : %u
\n
"
,
M_ZC
);
a
ssert
(
0
);
a
bort
(
);
break
;
}
...
...
@@ -88,7 +88,7 @@ int16_t *base_sequence_less_than_36(unsigned int M_ZC,
if
(
rv_overbar
==
NULL
)
{
msg
(
"Fatal memory allocation problem
\n
"
);
a
ssert
(
0
);
a
bort
(
);
}
if
(
M_ZC
==
30
)
{
...
...
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
View file @
7b7b63f3
...
...
@@ -641,6 +641,7 @@ int nr_pdcch_channel_estimation(PHY_VARS_NR_UE *ue,
}
return
(
0
);
}
...
...
openair1/PHY/NR_UE_TRANSPORT/pss_nr.c
View file @
7b7b63f3
...
...
@@ -103,7 +103,7 @@ void *get_idft(int ofdm_symbol_size)
default:
printf
(
"function get_idft : unsupported ofdm symbol size
\n
"
);
a
ssert
(
0
);
a
bort
(
);
break
;
}
return
idft
;
...
...
@@ -160,7 +160,7 @@ void *get_dft(int ofdm_symbol_size)
default:
printf
(
"function get_dft : unsupported ofdm symbol size
\n
"
);
a
ssert
(
0
);
a
bort
(
);
break
;
}
return
dft
;
...
...
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