]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/sensorboards/mts300/MagYC.nc
Change to follow TEP 109 .
[tinyos-2.x.git] / tos / sensorboards / mts300 / MagYC.nc
diff --git a/tos/sensorboards/mts300/MagYC.nc b/tos/sensorboards/mts300/MagYC.nc
new file mode 100644 (file)
index 0000000..72c8bd4
--- /dev/null
@@ -0,0 +1,34 @@
+/* $Id$\r
+ * Copyright (c) 2006 Intel Corporation\r
+ * All rights reserved.\r
+ *\r
+ * This file is distributed under the terms in the attached INTEL-LICENSE     \r
+ * file. If you do not find these files, copies can be found by writing to\r
+ * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, \r
+ * 94704.  Attention:  Intel License Inquiry.\r
+ */\r
+/**\r
+ * @author Alif Chen\r
+ */\r
+\r
+#include "mts300.h"\r
+\r
+generic configuration MagYC()\r
+{\r
+  provides interface Mag;\r
+  provides interface Read<uint16_t>;\r
+}\r
+implementation {\r
+  enum {\r
+    ID = unique(UQ_MAG_RESOURCE)\r
+  };\r
+  \r
+  components MagReadP,MagConfigP, new AdcReadClientC() as AdcY;\r
+\r
+  Mag = MagReadP;\r
+\r
+  Read = MagReadP.MagY[ID];\r
+  MagReadP.ActualY[ID] -> AdcY;\r
+  AdcY.Atm128AdcConfig -> MagConfigP.ConfigY;\r
+}\r
+\r