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
Michael Black
OpenXG UE
Commits
eccbfb62
Commit
eccbfb62
authored
Oct 03, 2017
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix: fix compilation for T
parent
239ea986
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.c
+2
-3
targets/RT/USER/lte-softmodem.h
targets/RT/USER/lte-softmodem.h
+1
-1
No files found.
targets/RT/USER/lte-softmodem.c
View file @
eccbfb62
...
...
@@ -684,9 +684,8 @@ static void get_options(void) {
}
#if T_TRACER
int
T_
wait
=
1
;
/* by default we wait for the tracer */
int
T_
nowait
=
0
;
/* by default we wait for the tracer */
int
T_port
=
2021
;
/* default port to listen to to wait for the tracer */
int
T_dont_fork
=
0
;
/* default is to fork, see 'T_init' to understand */
#endif
...
...
@@ -920,7 +919,7 @@ int main( int argc, char **argv )
#if T_TRACER
T_init
(
T_port
,
T_
wait
,
T_dont_fork
);
T_init
(
T_port
,
1
-
T_no
wait
,
T_dont_fork
);
#endif
...
...
targets/RT/USER/lte-softmodem.h
View file @
eccbfb62
...
...
@@ -190,7 +190,7 @@ extern int16_t dlsch_demod_shift;
extern
int
T_port
;
extern
int
T_wait
;
extern
int
T_
no
wait
;
extern
int
T_dont_fork
;
/*------------------------------------------------------------------------------------------------------------------------------------------*/
...
...
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