]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/sensorboards/mts300/MagYStreamC.nc
Change to follow TEP 109 .
[tinyos-2.x.git] / tos / sensorboards / mts300 / MagYStreamC.nc
diff --git a/tos/sensorboards/mts300/MagYStreamC.nc b/tos/sensorboards/mts300/MagYStreamC.nc
new file mode 100644 (file)
index 0000000..adfd842
--- /dev/null
@@ -0,0 +1,31 @@
+/* $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 MagYStreamC() {\r
+  provides interface ReadStream<uint16_t>;\r
+  provides interface Mag;\r
+}\r
+implementation {\r
+  enum {\r
+    ID = unique(UQ_ACCEL_RESOURCE)\r
+  };\r
+  components MagReadStreamP, MagConfigP, new AdcReadStreamClientC();\r
+\r
+  Mag = MagReadStreamP;\r
+\r
+  ReadStream = MagReadStreamP.ReadStreamY[ID];\r
+  MagReadStreamP.ActualY[ID] -> AdcReadStreamClientC;\r
+  AdcReadStreamClientC.Atm128AdcConfig -> MagConfigP.ConfigY;\r
+}\r