Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Shweta Shrivastava
openairinterface5G
Commits
30f8ed2d
Commit
30f8ed2d
authored
7 years ago
by
Cédric Roux
Browse files
Options
Downloads
Patches
Plain Diff
bugfix: fix compilation for T
parent
70e30375
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
targets/RT/USER/lte-softmodem.c
+2
-3
2 additions, 3 deletions
targets/RT/USER/lte-softmodem.c
targets/RT/USER/lte-softmodem.h
+1
-1
1 addition, 1 deletion
targets/RT/USER/lte-softmodem.h
with
3 additions
and
4 deletions
targets/RT/USER/lte-softmodem.c
+
2
−
3
View file @
30f8ed2d
...
...
@@ -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_
no
wait
=
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
...
...
This diff is collapsed.
Click to expand it.
targets/RT/USER/lte-softmodem.h
+
1
−
1
View file @
30f8ed2d
...
...
@@ -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
;
/*------------------------------------------------------------------------------------------------------------------------------------------*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment