]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/null/PlatformLedsC.nc
bit rot fixes
[tinyos-2.x.git] / tos / platforms / null / PlatformLedsC.nc
index c10e511cd32322157f115ea66bfbecbcc960fb29..722b43fe9a7b49a3dafc461be13c0a72ea25c6e0 100644 (file)
@@ -81,4 +81,29 @@ implementation
   async command void Led2.makeOutput() {
     call Init.init();
   }
+
+  async command bool Led0.isInput() { 
+    return FALSE;
+  }
+
+  async command bool Led0.isOutput() { 
+    return FALSE;
+  }
+
+  async command bool Led1.isInput() { 
+    return FALSE;
+  }
+
+  async command bool Led1.isOutput() { 
+    return FALSE;
+  }
+
+  async command bool Led2.isInput() { 
+    return FALSE;
+  }
+
+  async command bool Led2.isOutput() { 
+    return FALSE;
+  }
+
 }