Difference between revisions of "The simplest TinyOS program"

From TinyOS Wiki
Jump to: navigation, search
Line 9: Line 9:
  
 
which is written in a file, say, simple.c and compiled with the command
 
which is written in a file, say, simple.c and compiled with the command
 +
 
<code bash>
 
<code bash>
user@host$ gcc test.c
+
$ gcc test.c
 
</code>
 
</code>
  
 
which produces the executable file <tt>a.out</tt>, which of course does nothing!
 
which produces the executable file <tt>a.out</tt>, which of course does nothing!

Revision as of 21:57, 9 September 2008

There is some value in knowing the the simplest code that can be compiled without errors. The C equivalent is

int main () {

  return 0;

}

which is written in a file, say, simple.c and compiled with the command

$ gcc test.c

which produces the executable file a.out, which of course does nothing!