Send to node 1.0 instead of 41.41, to make the example work better in Cooja.

This commit is contained in:
adamdunkels 2010-02-02 16:36:46 +00:00
parent cc2be0f111
commit 50b2118731

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: example-unicast.c,v 1.4 2009/11/19 17:31:23 nifi Exp $ * $Id: example-unicast.c,v 1.5 2010/02/02 16:36:46 adamdunkels Exp $
*/ */
/** /**
@ -77,9 +77,11 @@ PROCESS_THREAD(example_unicast_process, ev, data)
PROCESS_WAIT_EVENT_UNTIL(etimer_expired(&et)); PROCESS_WAIT_EVENT_UNTIL(etimer_expired(&et));
packetbuf_copyfrom("Hello", 5); packetbuf_copyfrom("Hello", 5);
addr.u8[0] = 41; addr.u8[0] = 1;
addr.u8[1] = 41; addr.u8[1] = 0;
unicast_send(&uc, &addr); if(!rimeaddr_cmp(&addr, &rimeaddr_node_addr)) {
unicast_send(&uc, &addr);
}
} }