X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=apps%2FNull%2FNullC.nc;h=a25e0c082e6357ad12576342d1733bd14d65b2f4;hb=e9bfab607e051bae6afb47b44892ce37541d1b44;hp=a104c74a5f7166b966f41bc83d7855fbfcbfa359;hpb=1ba974b83d19fc41bf80acd52726f36f7f1df297;p=tinyos-2.x.git diff --git a/apps/Null/NullC.nc b/apps/Null/NullC.nc index a104c74a..a25e0c08 100644 --- a/apps/Null/NullC.nc +++ b/apps/Null/NullC.nc @@ -31,19 +31,21 @@ /** * Null is an empty skeleton application. It is useful to test that the * build environment is functional in its most minimal sense, i.e., you - * can correctly compile an application. + * can correctly compile an application. It is also useful to test the + * minimum power consumption of a node when it has absolutely no + * interrupts or resources active. * * @author Cory Sharp * @date February 4, 2006 */ -module NullC +module NullC @safe() { uses interface Boot; } implementation { - event void Boot.booted() - { + event void Boot.booted() { + // Do nothing. } }