]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/mica2/VoltageStreamC.nc
Merge devel code into the trunk.
[tinyos-2.x.git] / tos / platforms / mica2 / VoltageStreamC.nc
diff --git a/tos/platforms/mica2/VoltageStreamC.nc b/tos/platforms/mica2/VoltageStreamC.nc
new file mode 100644 (file)
index 0000000..6749d89
--- /dev/null
@@ -0,0 +1,27 @@
+/* $Id$
+ * Copyright (c) 2006 Intel Corporation
+ * All rights reserved.
+ *
+ * This file is distributed under the terms in the attached INTEL-LICENSE     
+ * file. If you do not find these files, copies can be found by writing to
+ * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, 
+ * 94704.  Attention:  Intel License Inquiry.
+ */
+/**
+ * Voltage sensor.
+ * 
+ * @author David Gay
+ */
+
+#include "hardware.h"
+
+generic configuration VoltageStreamC() {
+  provides interface ReadStream<uint16_t>;
+}
+implementation {
+  components VoltageDeviceP, new AdcReadStreamClientC();
+
+  ReadStream = AdcReadStreamClientC;
+  AdcReadStreamClientC.Atm128AdcConfig -> VoltageDeviceP;
+  AdcReadStreamClientC.ResourceConfigure -> VoltageDeviceP;
+}