Added more printouts

This commit is contained in:
adamdunkels 2007-03-31 18:43:45 +00:00
parent ce53fdd7f4
commit e924c41a3b

View File

@ -28,7 +28,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* $Id: test-trickle.c,v 1.3 2007/03/25 12:10:29 adamdunkels Exp $ * $Id: test-trickle.c,v 1.4 2007/03/31 18:43:45 adamdunkels Exp $
*/ */
/** /**
@ -53,8 +53,9 @@ AUTOSTART_PROCESSES(&test_trickle_process);
static void static void
trickle_recv(struct trickle_conn *c) trickle_recv(struct trickle_conn *c)
{ {
printf("trickle message received '%s'\n", (char *)rimebuf_dataptr()); printf("%d.%d: trickle message received '%s'\n",
/* log_message("Trickle", rimebuf_dataptr()); */ rimeaddr_node_addr.u8[0], rimeaddr_node_addr.u8[1],
(char *)rimebuf_dataptr());
} }
const static struct trickle_callbacks trickle_call = {trickle_recv}; const static struct trickle_callbacks trickle_call = {trickle_recv};
static struct trickle_conn trickle; static struct trickle_conn trickle;
@ -64,7 +65,6 @@ PROCESS_THREAD(test_trickle_process, ev, data)
PROCESS_EXITHANDLER(trickle_close(&trickle);) PROCESS_EXITHANDLER(trickle_close(&trickle);)
PROCESS_BEGIN(); PROCESS_BEGIN();
/* log_message("Trickle", "running");*/
trickle_open(&trickle, 128, &trickle_call); trickle_open(&trickle, 128, &trickle_call);
button_sensor.activate(); button_sensor.activate();
@ -72,8 +72,7 @@ PROCESS_THREAD(test_trickle_process, ev, data)
PROCESS_WAIT_EVENT_UNTIL(ev == sensors_event && PROCESS_WAIT_EVENT_UNTIL(ev == sensors_event &&
data == &button_sensor); data == &button_sensor);
rimebuf_copyfrom("Hej", 4); rimebuf_copyfrom("Hello, world", 13);
/* log_message("Hej", "hopp");*/
trickle_send(&trickle, TRICKLE_SECOND / 4); trickle_send(&trickle, TRICKLE_SECOND / 4);
} }