Turn off radio DEBUGFLOW printing
[contiki-2.x.git] / examples / sensinode / hello_world.c
blobec3d2c3d64c28473c1a109a51ee98a6983f2dfe2
1 /**
2 * \file
3 * Basic hello world example
4 * \author
5 * Zach Shelby <zach@sensinode.com>
6 */
8 #include "contiki.h"
9 #include <stdio.h> /* For printf() */
10 /*---------------------------------------------------------------------------*/
11 PROCESS(hello_world_process, "Hello world process");
12 AUTOSTART_PROCESSES(&hello_world_process);
13 /*---------------------------------------------------------------------------*/
14 PROCESS_THREAD(hello_world_process, ev, data)
17 PROCESS_BEGIN();
19 printf("Hello World!\n");
21 PROCESS_END();
23 /*---------------------------------------------------------------------------*/