]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/sensorboards/mts300/MagConfigP.nc
Convert to Unix-style line terminators.
[tinyos-2.x.git] / tos / sensorboards / mts300 / MagConfigP.nc
index 411fb95d041c89736280710a45795399a7a048f4..ad341096c441954933761f3abd7154df0cb273f9 100644 (file)
@@ -1,51 +1,51 @@
-/* $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 Alif Chen\r
- */\r
-\r
-#include "mts300.h"\r
-#include "I2C.h"\r
-\r
-configuration MagConfigP {\r
-  provides {\r
-    interface Mag;\r
-    interface Resource[uint8_t client];\r
-    interface Atm128AdcConfig as ConfigX;\r
-    interface Atm128AdcConfig as ConfigY;\r
-  }\r
-}\r
-implementation {\r
-  components MagP, MicaBusC, new Atm128I2CMasterC() as I2CPot,\r
-               new TimerMilliC() as WarmupTimer,\r
-    new RoundRobinArbiterC(UQ_MAG_RESOURCE) as Arbiter,\r
-    new SplitControlPowerManagerC() as PowerManager;\r
-\r
-       Mag = MagP;\r
-\r
-  Resource = Arbiter;\r
-  ConfigX = MagP.ConfigX;\r
-  ConfigY = MagP.ConfigY;\r
-\r
-  PowerManager.ResourceDefaultOwner -> Arbiter;\r
-  PowerManager.ArbiterInfo -> Arbiter;\r
-  PowerManager.SplitControl -> MagP;\r
-\r
-  MagP.I2CPacket -> I2CPot;\r
-  MagP.I2CResource -> I2CPot;\r
-\r
-  MagP.Timer -> WarmupTimer;\r
-  MagP.MagPower -> MicaBusC.PW5;\r
-  MagP.MagAdcX -> MicaBusC.Adc6;\r
-  MagP.MagAdcY -> MicaBusC.Adc5;\r
-}\r
+/* $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.
+ */
+/**
+ * Internal component for basicsb photodiode. Arbitrates access to the photo
+ * diode and automatically turns it on or off based on user requests.
+ *
+ * @author Alif Chen
+ */
+
+#include "mts300.h"
+#include "I2C.h"
+
+configuration MagConfigP {
+  provides {
+    interface Mag;
+    interface Resource[uint8_t client];
+    interface Atm128AdcConfig as ConfigX;
+    interface Atm128AdcConfig as ConfigY;
+  }
+}
+implementation {
+  components MagP, MicaBusC, new Atm128I2CMasterC() as I2CPot,
+               new TimerMilliC() as WarmupTimer,
+    new RoundRobinArbiterC(UQ_MAG_RESOURCE) as Arbiter,
+    new SplitControlPowerManagerC() as PowerManager;
+
+       Mag = MagP;
+
+  Resource = Arbiter;
+  ConfigX = MagP.ConfigX;
+  ConfigY = MagP.ConfigY;
+
+  PowerManager.ResourceDefaultOwner -> Arbiter;
+  PowerManager.ArbiterInfo -> Arbiter;
+  PowerManager.SplitControl -> MagP;
+
+  MagP.I2CPacket -> I2CPot;
+  MagP.I2CResource -> I2CPot;
+
+  MagP.Timer -> WarmupTimer;
+  MagP.MagPower -> MicaBusC.PW5;
+  MagP.MagAdcX -> MicaBusC.Adc6;
+  MagP.MagAdcY -> MicaBusC.Adc5;
+}