]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/mica2/VoltageNowC.nc
Merge devel code into the trunk.
[tinyos-2.x.git] / tos / platforms / mica2 / VoltageNowC.nc
diff --git a/tos/platforms/mica2/VoltageNowC.nc b/tos/platforms/mica2/VoltageNowC.nc
new file mode 100644 (file)
index 0000000..edf0c18
--- /dev/null
@@ -0,0 +1,29 @@
+/* $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 VoltageNowC() {
+  provides interface Resource;
+  provides interface ReadNow<uint16_t>;
+}
+implementation {
+  components new AdcReadNowClientC(), VoltageDeviceP;
+
+  ReadNow = AdcReadNowClientC;
+  Resource = AdcReadNowClientC;
+  AdcReadNowClientC.Atm128AdcConfig -> VoltageDeviceP;
+  AdcReadNowClientC.ResourceConfigure -> VoltageDeviceP;
+}