From c76f34ff98cbbeb6480db159362326c8b12f44e8 Mon Sep 17 00:00:00 2001 From: fros4943 Date: Sat, 21 Mar 2009 15:47:40 +0000 Subject: [PATCH] minor serial test application update --- platform/cooja/testapps/testserial.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/platform/cooja/testapps/testserial.c b/platform/cooja/testapps/testserial.c index cb0b247c6..1b1350672 100644 --- a/platform/cooja/testapps/testserial.c +++ b/platform/cooja/testapps/testserial.c @@ -26,12 +26,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: testserial.c,v 1.4 2009/03/17 20:32:22 adamdunkels Exp $ + * $Id: testserial.c,v 1.5 2009/03/21 15:47:40 fros4943 Exp $ */ #include "contiki.h" #include "dev/serial-line.h" -#include "dev/rs232.h" #include @@ -49,14 +48,11 @@ PROCESS_THREAD(test_serial_process, ev, data) /* Start serial process */ serial_line_init(); - printf("Starting serial test process\n"); - while(1) { PROCESS_WAIT_EVENT(); if (etimer_expired(&et)) { - printf("Sending serial data now\n"); - rs232_print("GNU's not Unix\n"); + printf("Waiting for serial data\n"); etimer_restart(&et); }