summaryrefslogtreecommitdiff
path: root/cesar
diff options
context:
space:
mode:
Diffstat (limited to 'cesar')
-rw-r--r--cesar/hal/phy/test/phy/src/test_phy.c5
-rw-r--r--cesar/mac/pbproc/test/int/src/test_pbproc.c3
-rw-r--r--cesar/maximus/python/utest/stationtest/src/hello_world.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/main_example.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_cb.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_ether.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_false_alarm.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_lib_cesar.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_log.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_send.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_station.c1
-rw-r--r--cesar/maximus/python/utest/stationtest/src/test_tx_rx.c1
-rw-r--r--cesar/test_general/dataplane/src/test_dataplane.c1
-rw-r--r--cesar/test_general/station/common/src/station.c4
14 files changed, 0 insertions, 23 deletions
diff --git a/cesar/hal/phy/test/phy/src/test_phy.c b/cesar/hal/phy/test/phy/src/test_phy.c
index 8e9012b454..5e7757580e 100644
--- a/cesar/hal/phy/test/phy/src/test_phy.c
+++ b/cesar/hal/phy/test/phy/src/test_phy.c
@@ -694,11 +694,6 @@ cyg_user_start (void)
fcall_register (fcall, "test_phy_chandata", test_phy_chandata_fcall,
&test_phy_global);
test_phy_burst_init (&test_phy_global, fcall);
-#if !CONFIG_FCALL_MME
- my_station.pipe_log_fd = 1;
- //my_station.log_level = STATION_LOG_DEBUG;
- //my_station.log_mask = STATION_LOGTYPE_FCALL;
-#endif
trace_init ();
test_phy_init (&test_phy_global);
}
diff --git a/cesar/mac/pbproc/test/int/src/test_pbproc.c b/cesar/mac/pbproc/test/int/src/test_pbproc.c
index c661f361cc..199c2119ab 100644
--- a/cesar/mac/pbproc/test/int/src/test_pbproc.c
+++ b/cesar/mac/pbproc/test/int/src/test_pbproc.c
@@ -504,9 +504,6 @@ cyg_user_start (void)
fcall = interface->fcall->fcall_ctx;
#else /* !CONFIG_FCALL_MME */
fcall = my_station.fcall;
- my_station.pipe_log_fd = 1;
- //my_station.log_level = STATION_LOG_DEBUG;
- //my_station.log_mask = STATION_LOGTYPE_FCALL;
#endif /* !CONFIG_FCALL_MME */
test_pbproc_init (&test_pbproc_global, fcall);
}
diff --git a/cesar/maximus/python/utest/stationtest/src/hello_world.c b/cesar/maximus/python/utest/stationtest/src/hello_world.c
index e393a5ff1f..e740d161a7 100644
--- a/cesar/maximus/python/utest/stationtest/src/hello_world.c
+++ b/cesar/maximus/python/utest/stationtest/src/hello_world.c
@@ -21,7 +21,6 @@ int main(void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
diag_write_string("hello by eCos\n");
return 0;
}
diff --git a/cesar/maximus/python/utest/stationtest/src/main_example.c b/cesar/maximus/python/utest/stationtest/src/main_example.c
index fb86cfdc63..a2023dc761 100644
--- a/cesar/maximus/python/utest/stationtest/src/main_example.c
+++ b/cesar/maximus/python/utest/stationtest/src/main_example.c
@@ -362,7 +362,6 @@ int main (void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register(my_station.fcall, "function_1", (void*)&my_function1, NULL);
fcall_register(my_station.fcall, "function_2", (void*)&my_function2, NULL);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_cb.c b/cesar/maximus/python/utest/stationtest/src/test_cb.c
index dc635369f4..2625d4fb5c 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_cb.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_cb.c
@@ -33,7 +33,6 @@ int main (void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register(my_station.fcall, "get_seg", (void*)&get_seg, NULL);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_ether.c b/cesar/maximus/python/utest/stationtest/src/test_ether.c
index 9a425ad295..824ee01e76 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_ether.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_ether.c
@@ -186,7 +186,6 @@ main (void)
{
station_log_set_level (&my_station, STATION_LOG_NONE);
station_log_set_mask (&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register (my_station.fcall, "init_ether", (void*) &init_ether, NULL);
fcall_register (my_station.fcall, "uninit_ether", (void*) &uninit_ether,
diff --git a/cesar/maximus/python/utest/stationtest/src/test_false_alarm.c b/cesar/maximus/python/utest/stationtest/src/test_false_alarm.c
index 390baa4ac0..48ad76537f 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_false_alarm.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_false_alarm.c
@@ -148,7 +148,6 @@ int main (void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register(my_station.fcall, "init_phy", (void*)&init_phy, NULL);
fcall_register(my_station.fcall, "activate_rx", (void*)&activate_rx, NULL);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_lib_cesar.c b/cesar/maximus/python/utest/stationtest/src/test_lib_cesar.c
index 4cf93c751d..93e57d1efa 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_lib_cesar.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_lib_cesar.c
@@ -140,7 +140,6 @@ main (void)
{
station_log_set_level (&my_station, STATION_LOG_NONE);
station_log_set_mask (&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
maximus_phy_dur_init (&my_station);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_log.c b/cesar/maximus/python/utest/stationtest/src/test_log.c
index 68ff126172..19233bcf81 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_log.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_log.c
@@ -155,7 +155,6 @@ int test_log (fcall_ctx_t *fcall, fcall_param_t **param, sci_msg_t **msg,
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
station_log (&my_station, STATION_LOG_ERROR, STATION_LOGTYPE_STATION,
"%s", min);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_send.c b/cesar/maximus/python/utest/stationtest/src/test_send.c
index 93229544cf..2725390d41 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_send.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_send.c
@@ -217,7 +217,6 @@ int main (void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register(my_station.fcall, "set_tonemask", (void*)&set_tonemask, NULL);
fcall_register(my_station.fcall, "prepare_rx", (void*)&prepare_rx, NULL);
diff --git a/cesar/maximus/python/utest/stationtest/src/test_station.c b/cesar/maximus/python/utest/stationtest/src/test_station.c
index e0fa1305f7..716ac9315e 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_station.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_station.c
@@ -140,7 +140,6 @@ main (void)
{
station_log_set_level (&my_station, STATION_LOG_NONE);
station_log_set_mask (&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
/* Initialize the HAL ipmbox. */
ctx = ipmbox_init ();
diff --git a/cesar/maximus/python/utest/stationtest/src/test_tx_rx.c b/cesar/maximus/python/utest/stationtest/src/test_tx_rx.c
index b6049a80a9..d97188a1ef 100644
--- a/cesar/maximus/python/utest/stationtest/src/test_tx_rx.c
+++ b/cesar/maximus/python/utest/stationtest/src/test_tx_rx.c
@@ -336,7 +336,6 @@ int main (void)
{
station_log_set_level(&my_station, STATION_LOG_NONE);
station_log_set_mask(&my_station, STATION_LOGTYPE_ALL);
- my_station.pipe_log_fd = 1;
fcall_register(my_station.fcall, "set_tonemask", (void*)&set_tonemask, NULL);
fcall_register(my_station.fcall, "prepare_rx", (void*)&prepare_rx, NULL);
diff --git a/cesar/test_general/dataplane/src/test_dataplane.c b/cesar/test_general/dataplane/src/test_dataplane.c
index 0a0be360b8..f0b55ee9e9 100644
--- a/cesar/test_general/dataplane/src/test_dataplane.c
+++ b/cesar/test_general/dataplane/src/test_dataplane.c
@@ -192,7 +192,6 @@ test_dataplane_init (test_dataplane_t *ctx)
fcall = interface->fcall->fcall_ctx;
#else /* !CONFIG_FCALL_MME */
fcall = my_station.fcall;
- my_station.pipe_log_fd = 1;
#endif /* !CONFIG_FCALL_MME */
ca_test_fcall_beacon_period_init (&ctx->beacon_period, &ctx->config,
pbproc_get_phy (ctx->pbproc),
diff --git a/cesar/test_general/station/common/src/station.c b/cesar/test_general/station/common/src/station.c
index a43fcdc530..c7589b78ce 100644
--- a/cesar/test_general/station/common/src/station.c
+++ b/cesar/test_general/station/common/src/station.c
@@ -141,10 +141,6 @@ cyg_user_start (void)
&fc_sta_trace_dump_all, NULL);
#endif
-#if !CONFIG_FCALL_MME
- my_station.pipe_log_fd = 1;
-#endif
-
#if CONFIG_STATS
lib_stats_set_stat_callback ("idemButCallback(u64)",
(lib_stats_cb_r_t) lib_stats_callback_test,