]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/sensorboards/mts300/MagConfigP.nc
Add mic and mag driver .
[tinyos-2.x.git] / tos / sensorboards / mts300 / MagConfigP.nc
diff --git a/tos/sensorboards/mts300/MagConfigP.nc b/tos/sensorboards/mts300/MagConfigP.nc
new file mode 100644 (file)
index 0000000..6f44f72
--- /dev/null
@@ -0,0 +1,50 @@
+/* $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
+ * Internal component for basicsb photodiode. Arbitrates access to the photo\r
+ * diode and automatically turns it on or off based on user requests.\r
+ *\r
+ * @author David Gay\r
+ */\r
+\r
+#include "mts300.h"\r
+#include "I2C.h"\r
+\r
+configuration MagConfigP {\r
+  provides {\r
+    interface Init;\r
+    interface StdControl;\r
+    interface Mag;\r
+\r
+    interface Atm128AdcConfig as ConfigX;\r
+    interface Atm128AdcConfig as ConfigY;\r
+    interface ResourceConfigure as ResourceX;\r
+    interface ResourceConfigure as ResourceY;\r
+  }\r
+}\r
+implementation {\r
+  components MagP, MicaBusC, new Atm128I2CMasterC() as I2CPot;\r
+\r
+       Init = MagP;\r
+       StdControl = MagP;\r
+       Mag = MagP;\r
+\r
+  ConfigX = MagP.ConfigX;\r
+  ConfigY = MagP.ConfigY;\r
+  ResourceX = MagP.ResourceX;\r
+  ResourceY = MagP.ResourceY;\r
+\r
+  MagP.I2CPacket -> I2CPot;\r
+  MagP.Resource -> I2CPot;\r
+\r
+  MagP.MagPower -> MicaBusC.PW5;\r
+  MagP.MagAdcX -> MicaBusC.Adc6;\r
+  MagP.MagAdcY -> MicaBusC.Adc5;\r
+}\r