2018-02-15 14:39:18 +00:00
|
|
|
/*
|
2018-07-16 14:39:19 +00:00
|
|
|
* Copyright (c) 2018, Texas Instruments Incorporated - http://www.ti.com/
|
2018-02-15 14:39:18 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. 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.
|
|
|
|
* 3. Neither the name of the copyright holder 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 HOLDER 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.
|
|
|
|
*/
|
|
|
|
/**
|
2018-07-16 14:39:19 +00:00
|
|
|
* \addtogroup srf06-peripherals
|
2018-02-16 15:55:39 +00:00
|
|
|
* @{
|
|
|
|
*
|
2018-02-15 14:39:18 +00:00
|
|
|
* \file
|
2018-07-16 14:39:19 +00:00
|
|
|
* Driver for the SmartRF06 EB ALS sensor.
|
|
|
|
* \author
|
|
|
|
* Edvard Pettersen <e.pettersen@ti.com>
|
2018-02-15 14:39:18 +00:00
|
|
|
*/
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2018-05-28 11:17:01 +00:00
|
|
|
#include "contiki.h"
|
2018-07-04 17:33:03 +00:00
|
|
|
#include "dev/gpio-hal.h"
|
2018-05-28 11:17:01 +00:00
|
|
|
#include "lib/sensors.h"
|
|
|
|
#include "sys/timer.h"
|
|
|
|
|
2018-07-04 17:33:03 +00:00
|
|
|
#include "als-sensor.h"
|
2018-07-16 14:39:19 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2018-07-04 17:33:03 +00:00
|
|
|
#include <Board.h>
|
|
|
|
|
|
|
|
#include <ti/drivers/ADC.h>
|
2018-07-16 14:39:19 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2018-05-28 11:17:01 +00:00
|
|
|
#include <stdint.h>
|
2018-02-15 14:39:18 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2018-07-04 17:33:03 +00:00
|
|
|
static ADC_Handle adc_handle;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static int
|
|
|
|
init(void)
|
|
|
|
{
|
|
|
|
ADC_Params adc_params;
|
|
|
|
ADC_Params_init(&adc_params);
|
|
|
|
|
|
|
|
adc_handle = ADC_open(Board_ADCALS, &adc_params);
|
|
|
|
if (adc_handle == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2018-02-15 14:39:18 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2018-05-28 11:17:01 +00:00
|
|
|
static int
|
|
|
|
config(int type, int enable)
|
|
|
|
{
|
|
|
|
switch(type) {
|
|
|
|
case SENSORS_HW_INIT:
|
2018-07-04 17:33:03 +00:00
|
|
|
return init();
|
|
|
|
|
2018-05-28 11:17:01 +00:00
|
|
|
case SENSORS_ACTIVE:
|
2018-07-04 17:33:03 +00:00
|
|
|
gpio_hal_arch_pin_set_output(Board_ALS_PWR);
|
|
|
|
gpio_hal_arch_pin_set_input(Board_ALS_OUT);
|
2018-05-28 11:17:01 +00:00
|
|
|
|
|
|
|
if(enable) {
|
2018-07-04 17:33:03 +00:00
|
|
|
gpio_hal_arch_set_pin(Board_ALS_PWR);
|
2018-05-28 11:17:01 +00:00
|
|
|
clock_delay_usec(2000);
|
|
|
|
} else {
|
2018-07-04 17:33:03 +00:00
|
|
|
gpio_hal_arch_clear_pin(Board_ALS_PWR);
|
2018-05-28 11:17:01 +00:00
|
|
|
}
|
|
|
|
break;
|
2018-07-04 17:33:03 +00:00
|
|
|
|
2018-05-28 11:17:01 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2018-02-15 14:39:18 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2018-05-28 11:17:01 +00:00
|
|
|
static int
|
|
|
|
value(int type)
|
|
|
|
{
|
|
|
|
|
2018-07-04 17:33:03 +00:00
|
|
|
uint16_t adc_value = 0;
|
|
|
|
int_fast16_t res = ADC_convert(adc_handle, &adc_value);
|
|
|
|
if (res != ADC_STATUS_SUCCESS) {
|
|
|
|
return -1;
|
|
|
|
}
|
2018-02-15 14:39:18 +00:00
|
|
|
|
2018-07-04 17:33:03 +00:00
|
|
|
return (int)adc_value;
|
2018-05-28 11:17:01 +00:00
|
|
|
}
|
2018-02-15 14:39:18 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2018-05-28 11:17:01 +00:00
|
|
|
static int
|
|
|
|
status(int type)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2018-02-15 14:39:18 +00:00
|
|
|
/*---------------------------------------------------------------------------*/
|
2018-05-28 11:17:01 +00:00
|
|
|
SENSORS_SENSOR(als_sensor, ALS_SENSOR, value, config, status);
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/** @} */
|