Commit 30f8ed2d authored by Cedric Roux's avatar Cedric Roux

bugfix: fix compilation for T

parent 70e30375
...@@ -684,9 +684,8 @@ static void get_options(void) { ...@@ -684,9 +684,8 @@ static void get_options(void) {
} }
#if T_TRACER #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_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 */ int T_dont_fork = 0; /* default is to fork, see 'T_init' to understand */
#endif #endif
...@@ -920,7 +919,7 @@ int main( int argc, char **argv ) ...@@ -920,7 +919,7 @@ int main( int argc, char **argv )
#if T_TRACER #if T_TRACER
T_init(T_port, T_wait, T_dont_fork); T_init(T_port, 1-T_nowait, T_dont_fork);
#endif #endif
......
...@@ -190,7 +190,7 @@ extern int16_t dlsch_demod_shift; ...@@ -190,7 +190,7 @@ extern int16_t dlsch_demod_shift;
extern int T_port; extern int T_port;
extern int T_wait; extern int T_nowait;
extern int T_dont_fork; extern int T_dont_fork;
/*------------------------------------------------------------------------------------------------------------------------------------------*/ /*------------------------------------------------------------------------------------------------------------------------------------------*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment