Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
OpenXG
OpenXG UE
Commits
15d8bd5d
Commit
15d8bd5d
authored
Apr 26, 2019
by
Raphael Defosseux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix a few cppcheck errors.
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
c89a06dc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
openair1/PHY/LTE_TRANSPORT/dlsch_coding.c
openair1/PHY/LTE_TRANSPORT/dlsch_coding.c
+1
-1
openair2/RRC/LTE/MESSAGES/asn1_msg.c
openair2/RRC/LTE/MESSAGES/asn1_msg.c
+1
-1
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+1
-1
No files found.
openair1/PHY/LTE_TRANSPORT/dlsch_coding.c
View file @
15d8bd5d
...
...
@@ -705,7 +705,7 @@ int dlsch_encoding(PHY_VARS_eNB *eNB,
// if (dlsch->harq_processes[harq_pid]->Ndi == 1) { // this is a new packet
if
(
dlsch
->
harq_processes
[
harq_pid
]
->
round
==
0
)
{
// this is a new packet
#ifdef DEBUG_DLSCH_CODING
printf
(
"encoding thinks this is a new packet for harq_pid %d (%p), A %
d
\n
"
,
harq_pid
,
dlsch
,
A
);
printf
(
"encoding thinks this is a new packet for harq_pid %d (%p), A %
u
\n
"
,
harq_pid
,
dlsch
,
A
);
#endif
/*
int i;
...
...
openair2/RRC/LTE/MESSAGES/asn1_msg.c
View file @
15d8bd5d
...
...
@@ -353,7 +353,7 @@ LTE_DRX_Config_t *do_DrxConfig(uint8_t Mod_id,
memset
(
drxConfig
,
0
,
sizeof
(
LTE_DRX_Config_t
));
/* Long DRX cycle support is mandatory for CDRX activation */
if
(
!
ueSupportCdrxLongFlag
||
configuration
==
NULL
)
{
if
(
!
ueSupportCdrxLongFlag
)
{
drxConfig
->
present
=
LTE_DRX_Config_PR_release
;
}
else
{
drxConfig
->
present
=
configuration
->
radioresourceconfig
[
CC_id
].
drx_Config_present
;
...
...
targets/RT/USER/lte-softmodem.c
View file @
15d8bd5d
...
...
@@ -611,7 +611,7 @@ int main( int argc, char **argv ) {
#if defined (XFORMS)
void
*
status
;
#endif
int
CC_id
;
int
CC_id
=
0
;
int
ru_id
;
#if defined (XFORMS)
int
ret
;
...
...
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