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); }