mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-21 03:30:01 +00:00
Updated the announcement example to follow the current API.
This commit is contained in:
parent
f3d22e6287
commit
540675bc6a
@ -28,7 +28,7 @@
|
|||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* $Id: example-announcement.c,v 1.2 2009/12/28 18:18:23 nvt-se Exp $
|
* $Id: example-announcement.c,v 1.3 2011/01/07 23:23:31 nvt-se Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -80,16 +80,17 @@ PROCESS_THREAD(example_announcement_process, ev, data)
|
|||||||
|
|
||||||
PROCESS_BEGIN();
|
PROCESS_BEGIN();
|
||||||
|
|
||||||
/* Register an announcement with ID 128 and the lowest eight bytes
|
/* Register an announcement with ID 128. We provide the
|
||||||
of the Rime address as the value. We provide the
|
|
||||||
'received_announcement' function pointer so that this function
|
'received_announcement' function pointer so that this function
|
||||||
will be called when a announcements from neighbors are heard. */
|
will be called when a announcements from neighbors are heard. */
|
||||||
|
|
||||||
announcement_register(&example_announcement,
|
announcement_register(&example_announcement,
|
||||||
128,
|
128,
|
||||||
rimeaddr_node_addr.u8[0],
|
|
||||||
received_announcement);
|
received_announcement);
|
||||||
|
|
||||||
|
/* Set the lowest eight bytes of the Rime address as the value. */
|
||||||
|
announcement_set_value(&example_announcement, rimeaddr_node_addr.u8[0]);
|
||||||
|
|
||||||
while(1) {
|
while(1) {
|
||||||
static struct etimer et;
|
static struct etimer et;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user