]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
ADC functionality still questionable.
authorsmckown <smckown@4bc1554a-c7f2-4f65-a403-e0be01f0239c>
Tue, 16 Sep 2008 21:22:25 +0000 (21:22 +0000)
committerR. Steve McKown <rsmckown@gmail.com>
Tue, 1 Dec 2009 03:01:02 +0000 (20:01 -0700)
tos/platforms/tmirws/sensors/BattAdcC.nc [deleted file]
tos/platforms/tmirws/sensors/BattAdcP.nc [deleted file]
tos/platforms/tmirws/sensors/BatteryAdcC.nc [new file with mode: 0644]
tos/platforms/tmirws/sensors/BatteryAdcP.nc [new file with mode: 0644]
tos/platforms/tmirws/sensors/PyranometerAdcP.nc

diff --git a/tos/platforms/tmirws/sensors/BattAdcC.nc b/tos/platforms/tmirws/sensors/BattAdcC.nc
deleted file mode 100644 (file)
index aa0a90a..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright (c) 2008, Titanium Mirror, Inc.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * - Redistributions of source code must retain the above copyright notice,
- *   this list of conditions and the following disclaimer.
- * - Redistributions in binary form must reproduce the above copyright
- *   notice, this list of conditions and the following disclaimer in the
- *   documentation and/or other materials provided with the distribution.
- * - Neither the name of Titanium Mirror, Inc. nor the names of its
- *   contributors may be used to endorse or promote products derived from
- *   this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
- * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
- * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
- * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-/**
- * Reads the ADC pin connected to the LiPoly battery.  The connection is made
- * via a resistor divider where the battery voltage is 3x that read by the ADC.
- * Therefore, BattV = ADC / 4096 * 1.5 * 3.
- * 
- * @author R. Steve McKown <smckown@gmail.com>
- */
-generic configuration BattAdcC() {
-  provides interface Read<uint16_t>;
-  provides interface ReadStream<uint16_t>;
-
-  provides interface Resource;
-  provides interface ReadNow<uint16_t>;
-}
-implementation {
-  components new AdcReadClientC();
-  Read = AdcReadClientC;
-
-  components new AdcReadStreamClientC();
-  ReadStream = AdcReadStreamClientC;
-
-  components BattAdcP;
-  AdcReadClientC.AdcConfigure -> BattAdcP;
-  AdcReadStreamClientC.AdcConfigure -> BattAdcP;
-
-  components new AdcReadNowClientC();
-  Resource = AdcReadNowClientC;
-  ReadNow = AdcReadNowClientC;
-  
-  AdcReadNowClientC.AdcConfigure -> BattAdcP;
-}
diff --git a/tos/platforms/tmirws/sensors/BattAdcP.nc b/tos/platforms/tmirws/sensors/BattAdcP.nc
deleted file mode 100644 (file)
index 08c0b06..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Copyright (c) 2008, Titanium Mirror, Inc.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * - Redistributions of source code must retain the above copyright notice,
- *   this list of conditions and the following disclaimer.
- * - Redistributions in binary form must reproduce the above copyright
- *   notice, this list of conditions and the following disclaimer in the
- *   documentation and/or other materials provided with the distribution.
- * - Neither the name of Titanium Mirror, Inc. nor the names of its
- *   contributors may be used to endorse or promote products derived from
- *   this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
- * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
- * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
- * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-/**
- * Battery ADC reading.
- * 
- * @author R. Steve McKown <smckown@gmail.com>
- */
-#include "Msp430Adc12.h"
-
-module BattAdcP {
-  provides interface AdcConfigure<const msp430adc12_channel_config_t*>;
-}
-implementation {
-
-  const msp430adc12_channel_config_t config = {
-      inch: INPUT_CHANNEL_A0,
-      sref: REFERENCE_VREFplus_AVss,
-      ref2_5v: REFVOLT_LEVEL_1_5,
-      adc12ssel: SHT_SOURCE_ADC12OSC,
-      adc12div: SHT_CLOCK_DIV_1,
-      sht: SAMPLE_HOLD_8_CYCLES,
-      sampcon_ssel: SAMPCON_SOURCE_ACLK,
-      sampcon_id: SAMPCON_CLOCK_DIV_1
-  };
-  
-  async command const msp430adc12_channel_config_t* AdcConfigure.getConfiguration()
-  {
-    return &config;
-  }
-}
diff --git a/tos/platforms/tmirws/sensors/BatteryAdcC.nc b/tos/platforms/tmirws/sensors/BatteryAdcC.nc
new file mode 100644 (file)
index 0000000..d600a5b
--- /dev/null
@@ -0,0 +1,61 @@
+/*
+ * Copyright (c) 2008, Titanium Mirror, Inc.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * - Redistributions of source code must retain the above copyright notice,
+ *   this list of conditions and the following disclaimer.
+ * - Redistributions in binary form must reproduce the above copyright
+ *   notice, this list of conditions and the following disclaimer in the
+ *   documentation and/or other materials provided with the distribution.
+ * - Neither the name of Titanium Mirror, Inc. nor the names of its
+ *   contributors may be used to endorse or promote products derived from
+ *   this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+ * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
+ * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+ * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
+ * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+/**
+ * Reads the ADC pin connected to the LiPoly battery.  The connection is made
+ * via a resistor divider where the battery voltage is 3x that read by the ADC.
+ * Therefore, BattV = ADC / 4096 * 1.5 * 3.
+ * 
+ * @author R. Steve McKown <smckown@gmail.com>
+ */
+generic configuration BatteryAdcC() {
+  provides interface Read<uint16_t>;
+  provides interface ReadStream<uint16_t>;
+
+  provides interface Resource;
+  provides interface ReadNow<uint16_t>;
+}
+implementation {
+  components new AdcReadClientC();
+  Read = AdcReadClientC;
+
+  components new AdcReadStreamClientC();
+  ReadStream = AdcReadStreamClientC;
+
+  components BatteryAdcP;
+  AdcReadClientC.AdcConfigure -> BatteryAdcP;
+  AdcReadStreamClientC.AdcConfigure -> BatteryAdcP;
+
+  components new AdcReadNowClientC();
+  Resource = AdcReadNowClientC;
+  ReadNow = AdcReadNowClientC;
+  
+  AdcReadNowClientC.AdcConfigure -> BatteryAdcP;
+}
diff --git a/tos/platforms/tmirws/sensors/BatteryAdcP.nc b/tos/platforms/tmirws/sensors/BatteryAdcP.nc
new file mode 100644 (file)
index 0000000..7a4f448
--- /dev/null
@@ -0,0 +1,66 @@
+/*
+ * Copyright (c) 2008, Titanium Mirror, Inc.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * - Redistributions of source code must retain the above copyright notice,
+ *   this list of conditions and the following disclaimer.
+ * - Redistributions in binary form must reproduce the above copyright
+ *   notice, this list of conditions and the following disclaimer in the
+ *   documentation and/or other materials provided with the distribution.
+ * - Neither the name of Titanium Mirror, Inc. nor the names of its
+ *   contributors may be used to endorse or promote products derived from
+ *   this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+ * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
+ * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+ * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
+ * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+/**
+ * Battery ADC reading.
+ * 
+ * @author R. Steve McKown <smckown@gmail.com>
+ */
+#include "Msp430Adc12.h"
+
+module BatteryAdcP {
+  provides interface AdcConfigure<const msp430adc12_channel_config_t*>;
+}
+implementation {
+  /* TODO: The internal references are unsable, varying by more than 0.1V and
+   * jumping around.  The external reference of 2.50V seems stable.
+   */
+  const msp430adc12_channel_config_t config = {
+      inch: INPUT_CHANNEL_A0,
+#if 0 /* internal references unstable */
+      sref: REFERENCE_VREFplus_AVss,
+      ref2_5v: REFVOLT_LEVEL_1_5,
+      ref2_5v: REFVOLT_LEVEL_2_5,
+#else /* external reference is stable */
+      sref: REFERENCE_VeREFplus_AVss,
+      ref2_5v: REFVOLT_LEVEL_1_5,
+#endif
+      adc12ssel: SHT_SOURCE_ADC12OSC,
+      adc12div: SHT_CLOCK_DIV_8,
+      sht: SAMPLE_HOLD_8_CYCLES,
+      sampcon_ssel: SAMPCON_SOURCE_ACLK,
+      sampcon_id: SAMPCON_CLOCK_DIV_1
+  };
+  
+  async command const msp430adc12_channel_config_t* AdcConfigure.getConfiguration()
+  {
+    return &config;
+  }
+}
index 11e8ad37dff7013d4eb6939b356b373d0ec13609..6fd9b3edbdc5055940b598fd82f30d6067a1be75 100644 (file)
@@ -39,13 +39,18 @@ module PyranometerAdcP {
   provides interface AdcConfigure<const msp430adc12_channel_config_t*>;
 }
 implementation {
-
   const msp430adc12_channel_config_t config = {
       inch: INPUT_CHANNEL_A3,
+#if 0 /* internal references unstable */
       sref: REFERENCE_VREFplus_AVss,
       ref2_5v: REFVOLT_LEVEL_1_5,
+      ref2_5v: REFVOLT_LEVEL_2_5,
+#else /* external reference is stable */
+      sref: REFERENCE_VeREFplus_AVss,
+      ref2_5v: REFVOLT_LEVEL_1_5,
+#endif
       adc12ssel: SHT_SOURCE_ADC12OSC,
-      adc12div: SHT_CLOCK_DIV_1,
+      adc12div: SHT_CLOCK_DIV_8,
       sht: SAMPLE_HOLD_8_CYCLES,
       sampcon_ssel: SAMPCON_SOURCE_ACLK,
       sampcon_id: SAMPCON_CLOCK_DIV_1