⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pot.nc

📁 传感器网络中的嵌入式操作系统源代码
💻 NC
字号:
// $Id: Pot.nc,v 1.2.14.4 2003/08/26 09:08:13 cssharp Exp $/*									tab:4 * "Copyright (c) 2000-2003 The Regents of the University  of California.   * 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 following * two paragraphs and the author appear in all copies of this software. *  * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *  * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS." * * Copyright (c) 2002-2003 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. *//* * Authors:		Jason Hill, David Gay, Philip Levis * Date last modified:  8/20/02 *//** * The Pot interface allows users to adjust the potentiometer on the input * to the RFM radio which controls the RF transmit power or connectivity range. * The interface controls the potentiometer, rather than the signal strength, * so the settings may be a bit counterintuitive: the low potentiometer * settings correspond to high transmission power, and high potentiometer * settings correspond to low transmission power. Valid range depends on the * platform being used:   * <ul> * <li> <bold>Mica</bold> -- parameters range from 0 to 99; the actual * transmission range is heavily dependent on the antenna. With the built-in * antenna one can generally expect the range from 1 inch to 15 feet; with the * external antenna the range is from  1 foot to 100 feet. * <li> <bold>Rene</bold> -- parameters range from 20 to 77, though the exact * upper bound depends heavily on battery voltage. The exact range achieved * depends heavily on the battery used, but covers roughly the same range as * Mica (from 1 to 100 feet). <em> Let us emphasize this again: The exact low * transmission power bound for the Rene is dependent on battery voltage; it * is VERY difficult to get a reliable short range communication over an * extended time period without active control of the potentiometer. </em> * </ul>  * <em>Note:</em> the transmission power is NOT linear with respect to the * potentiometer setting; see mote schematics and RFM TR1000 manual for more * information. </p> * <em>Note:</em> any change to the potentiometer value will cause LEDs to * blink. This behavior is normal, expected, and unavoidable; at the end of * a potentiometer setting operation you may be left with an inconsistent LED * state, though the functions provided by the LED component will continue to * work correctly.  * @author Jason Hill * @author David Gay * @author Philip Levis */interface Pot {    /**      * Initialize the potentiometer and set it to a specified value.      * @param initialSetting The initial value for setting of the signal     * strength; see above for valid ranges and communication radii achieved     * with them.      * @return Returns SUCCESS upon successful initialization.      */  command result_t init(uint8_t initialSetting);    /**     * Set the potentiometer value     * @param setting The new value of the potentiometer.      * @return Returns SUCCESS if the setting was successful.  The operation     * returns FAIL if the component has not been initialized or the desired     * setting is outside of the valid range.      */   command result_t set(uint8_t setting);    /**      * Increment the potentiometer value by 1. This function proves to be     * quite useful in active potentiometer control scenarios.     * @return Returns SUCCESS if the increment was successful. Returns FAIL     * if the component has not been initialized or if the potentiometer     * cannot be incremented further.      */   command result_t increase();    /**      * Decrement the potentiometer value by 1. This function proves to be     * quite useful in active potentiometer control scenarios.     * @return Returns SUCCESS if the decrement was successful. Returns FAIL     * if the component has not been initialized or if the potentiometer     * cannot be decremented further.      */   command result_t decrease();    /**     * Return the current setting of the potentiometer.      * @return An unsigned 8-bit value denoting the current setting of the     * potentiometer.      */  command uint8_t get();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -