]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
Add MTS300 sensorboard driver for Tinyos 2.0 by Crossbow.
authorpipeng <pipeng>
Fri, 9 Feb 2007 23:28:00 +0000 (23:28 +0000)
committerpipeng <pipeng>
Fri, 9 Feb 2007 23:28:00 +0000 (23:28 +0000)
tos/sensorboards/mts300/Mic.nc [new file with mode: 0644]

diff --git a/tos/sensorboards/mts300/Mic.nc b/tos/sensorboards/mts300/Mic.nc
new file mode 100644 (file)
index 0000000..fa90082
--- /dev/null
@@ -0,0 +1,56 @@
+// $Id$
+
+/*
+tab:4
+ *  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
+By
+ *  downloading, copying, installing or using the software you agree to
+ *  this license.  If you do not agree to this license, do not download,
+ *  install, copy or use the software.
+ *
+ *  Copyright (c) 2004-2006 Crossbow Technology, Inc.
+ *  All rights reserved.
+ *
+ *  Permission to use, copy, modify, and distribute this software and its
+ *  documentation for any purpose, without fee, and without written
+ *  agreement is hereby granted, provided that the above copyright
+ *  notice, the (updated) modification history and the author appear in
+ *  all copies of this source code.
+ *
+ *  Permission is also granted to distribute this software under the
+ *  standard BSD license as contained in the TinyOS distribution.
+ *
+ *  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 INTEL OR ITS
+ *  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.
+ */
+
+/**
+ *  TinyOS 1.x to TinyOS 2.x translation layer.
+ *
+ *  @author Alif <rlchen@xbow.com.cn>  
+ */
+
+interface Mic {
+  /* Effect:  Set the multiplexer's setting on the microphone
+   * Return:  returns SUCCESS or FAIL
+   */
+  command error_t muxSel(uint8_t sel);
+  /* Effect:  Set the amplificatoin gain  on the microphone
+   * Return:  returns SUCCESS or FAIL
+   */
+  command error_t gainAdjust(uint8_t val);
+
+  /* Effect:  returns the binary tone detector's output
+   * Return:  0 meaning tone is detected, 1 meanning tone is not detected
+   */
+  command uint8_t readToneDetector();
+}