Contiki 2.6
|
00001 /* 00002 * Copyright (c) 2011, George Oikonomou - <oikonomou@users.sourceforge.net> 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions 00007 * are met: 00008 * 1. Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * 2. Redistributions in binary form must reproduce the above copyright 00011 * notice, this list of conditions and the following disclaimer in the 00012 * documentation and/or other materials provided with the distribution. 00013 * 3. Neither the name of the Institute nor the names of its contributors 00014 * may be used to endorse or promote products derived from this software 00015 * without specific prior written permission. 00016 * 00017 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 00018 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 00021 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00022 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00023 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00024 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00025 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00026 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00027 * SUCH DAMAGE. 00028 * 00029 * This file is part of the Contiki operating system. 00030 */ 00031 00032 /** 00033 * \file 00034 * Header file for ADC sensors on the SmartRF05EB. 00035 * 00036 * Sensors will be off by default, unless turned on explicitly 00037 * in contiki-conf.h 00038 * 00039 * \author 00040 * George Oikonomou - <oikonomou@users.sourceforge.net> 00041 */ 00042 00043 #ifndef __ADC_SENSOR_H__ 00044 #define __ADC_SENSOR_H__ 00045 00046 #include "cc253x.h" 00047 #include "contiki-conf.h" 00048 #include "lib/sensors.h" 00049 00050 /* ADC Sensor Types */ 00051 #define ADC_SENSOR "ADC" 00052 00053 #define ADC_SENSOR_TYPE_TEMP 0 00054 #define ADC_SENSOR_TYPE_VDD 4 00055 00056 #ifdef ADC_SENSOR_CONF_ON 00057 #define ADC_SENSOR_ON ADC_SENSOR_CONF_ON 00058 #endif /* ADC_SENSOR_CONF_ON */ 00059 00060 #if ADC_SENSOR_ON 00061 extern const struct sensors_sensor adc_sensor; 00062 #define ADC_SENSOR_ACTIVATE() adc_sensor.configure(SENSORS_ACTIVE, 1) 00063 #else 00064 #define ADC_SENSOR_ACTIVATE() 00065 #endif /* ADC_SENSOR_ON */ 00066 00067 /* Battery - SmartRF stuff */ 00068 #ifdef BATTERY_SENSOR_CONF_ON 00069 #define BATTERY_SENSOR_ON BATTERY_SENSOR_CONF_ON 00070 #endif /* BATTERY_SENSOR_CONF_ON */ 00071 00072 /* Temperature - Available on all devices */ 00073 #ifdef TEMP_SENSOR_CONF_ON 00074 #define TEMP_SENSOR_ON TEMP_SENSOR_CONF_ON 00075 #endif /* TEMP_SENSOR_CONF_ON */ 00076 00077 /* Supply Voltage (VDD / 3) - Available on all devices*/ 00078 #ifdef VDD_SENSOR_CONF_ON 00079 #define VDD_SENSOR_ON VDD_SENSOR_CONF_ON 00080 #endif /* VDD_SENSOR_CONF_ON */ 00081 00082 #endif /* __ADC_SENSOR_H__ */