Updated to match the new sensors API
This commit is contained in:
parent
d9900a474a
commit
24f28f0f1c
|
@ -32,12 +32,6 @@
|
|||
of two (see clock.c for details). */
|
||||
#define CLOCK_CONF_SECOND 64
|
||||
|
||||
#define IRQ_PORT1_VECTOR 1
|
||||
|
||||
#define IRQ_PORT1 0x01
|
||||
#define IRQ_PORT2 0x02
|
||||
#define IRQ_ADC 0x03
|
||||
|
||||
#define NODE_ID_EEPROM_OFFSET 0x0010 /* - 0x0014 */
|
||||
#define CFS_EEPROM_CONF_OFFSET 0x0040
|
||||
|
||||
|
|
|
@ -26,14 +26,14 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: battery-sensor.c,v 1.4 2007/05/22 21:06:57 adamdunkels Exp $
|
||||
* $Id: battery-sensor.c,v 1.5 2010/01/14 17:39:35 nifi Exp $
|
||||
*
|
||||
* -----------------------------------------------------------------
|
||||
*
|
||||
* Author : Adam Dunkels, Joakim Eriksson, Niclas Finne
|
||||
* Created : 2005-11-01
|
||||
* Updated : $Date: 2007/05/22 21:06:57 $
|
||||
* $Revision: 1.4 $
|
||||
* Updated : $Date: 2010/01/14 17:39:35 $
|
||||
* $Revision: 1.5 $
|
||||
*/
|
||||
|
||||
#include "dev/battery-sensor.h"
|
||||
|
@ -43,12 +43,6 @@
|
|||
const struct sensors_sensor battery_sensor;
|
||||
static unsigned int battery_value;
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
init(void)
|
||||
{
|
||||
battery_value = 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
irq(void)
|
||||
|
@ -57,43 +51,42 @@ irq(void)
|
|||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
activate(void)
|
||||
{
|
||||
irq_adc12_activate(&battery_sensor, 6, (INCH_4 + SREF_0));
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
deactivate(void)
|
||||
{
|
||||
irq_adc12_deactivate(&battery_sensor, 6);
|
||||
battery_value = 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
active(void)
|
||||
{
|
||||
return irq_adc12_active(6);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static unsigned int
|
||||
value(int type)
|
||||
{
|
||||
return ADC12MEM6/*battery_value*/;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
configure(int type, void *c)
|
||||
configure(int type, int value)
|
||||
{
|
||||
switch (type) {
|
||||
case SENSORS_HW_INIT:
|
||||
battery_value = 0;
|
||||
return 1;
|
||||
case SENSORS_ACTIVE:
|
||||
if (value) {
|
||||
if(!irq_adc12_active(6)) {
|
||||
irq_adc12_activate(6, (INCH_4 + SREF_0), irq);
|
||||
}
|
||||
} else {
|
||||
irq_adc12_deactivate(6);
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void *
|
||||
static int
|
||||
status(int type)
|
||||
{
|
||||
return NULL;
|
||||
switch (type) {
|
||||
case SENSORS_ACTIVE:
|
||||
case SENSORS_READY:
|
||||
return irq_adc12_active(6);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
SENSORS_SENSOR(battery_sensor, BATTERY_SENSOR,
|
||||
init, irq, activate, deactivate, active,
|
||||
value, configure, status);
|
||||
|
|
|
@ -28,10 +28,12 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: button-sensor.c,v 1.3 2006/06/18 08:07:31 adamdunkels Exp $
|
||||
* @(#)$Id: button-sensor.c,v 1.4 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
|
||||
#include "contiki-esb.h"
|
||||
#include "dev/button-sensor.h"
|
||||
#include "dev/hwconf.h"
|
||||
#include <signal.h>
|
||||
|
||||
const struct sensors_sensor button_sensor;
|
||||
|
||||
|
@ -41,68 +43,61 @@ HWCONF_PIN(BUTTON, 2, 7);
|
|||
HWCONF_IRQ(BUTTON, 2, 7);
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
init(void)
|
||||
interrupt(PORT2_VECTOR)
|
||||
irq_p2(void)
|
||||
{
|
||||
timer_set(&debouncetimer, 0);
|
||||
BUTTON_IRQ_EDGE_SELECTD();
|
||||
ENERGEST_ON(ENERGEST_TYPE_IRQ);
|
||||
|
||||
BUTTON_SELECT();
|
||||
BUTTON_MAKE_INPUT();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
irq(void)
|
||||
{
|
||||
if(BUTTON_CHECK_IRQ()) {
|
||||
if(timer_expired(&debouncetimer)) {
|
||||
timer_set(&debouncetimer, CLOCK_SECOND / 4);
|
||||
sensors_changed(&button_sensor);
|
||||
return 1;
|
||||
LPM4_EXIT;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
activate(void)
|
||||
{
|
||||
sensors_add_irq(&button_sensor, BUTTON_IRQ_PORT());
|
||||
BUTTON_ENABLE_IRQ();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
deactivate(void)
|
||||
{
|
||||
BUTTON_DISABLE_IRQ();
|
||||
sensors_remove_irq(&button_sensor, BUTTON_IRQ_PORT());
|
||||
P2IFG = 0x00;
|
||||
ENERGEST_OFF(ENERGEST_TYPE_IRQ);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
active(void)
|
||||
{
|
||||
return BUTTON_IRQ_ENABLED();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static unsigned int
|
||||
value(int type)
|
||||
{
|
||||
return BUTTON_READ() || !timer_expired(&debouncetimer);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
configure(int type, void *c)
|
||||
configure(int type, int value)
|
||||
{
|
||||
switch (type) {
|
||||
case SENSORS_HW_INIT:
|
||||
BUTTON_IRQ_EDGE_SELECTD();
|
||||
BUTTON_SELECT();
|
||||
BUTTON_MAKE_INPUT();
|
||||
return 1;
|
||||
case SENSORS_ACTIVE:
|
||||
if (value) {
|
||||
if(!BUTTON_IRQ_ENABLED()) {
|
||||
timer_set(&debouncetimer, 0);
|
||||
BUTTON_ENABLE_IRQ();
|
||||
}
|
||||
} else {
|
||||
BUTTON_DISABLE_IRQ();
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void *
|
||||
static int
|
||||
status(int type)
|
||||
{
|
||||
return NULL;
|
||||
switch (type) {
|
||||
case SENSORS_ACTIVE:
|
||||
case SENSORS_READY:
|
||||
return BUTTON_IRQ_ENABLED();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
SENSORS_SENSOR(button_sensor, BUTTON_SENSOR,
|
||||
init, irq, activate, deactivate, active,
|
||||
value, configure, status);
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: ctsrts-sensor.c,v 1.1 2006/06/18 07:49:33 adamdunkels Exp $
|
||||
* @(#)$Id: ctsrts-sensor.c,v 1.2 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -40,7 +40,10 @@
|
|||
* handshake but as said, that is not implemented yet.
|
||||
*/
|
||||
|
||||
#include "contiki-esb.h"
|
||||
#include "dev/ctsrts-sensor.h"
|
||||
#include "dev/irq.h"
|
||||
#include "dev/hwconf.h"
|
||||
#include <signal.h>
|
||||
|
||||
const struct sensors_sensor ctsrts_sensor;
|
||||
|
||||
|
@ -49,83 +52,21 @@ HWCONF_PIN(RS232RTS, 1, 7);
|
|||
HWCONF_PIN(RS232CTS, 1, 6);
|
||||
HWCONF_IRQ(RS232CTS, 1, 6);
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
init(void)
|
||||
{
|
||||
RS232RTS_SELECT();
|
||||
RS232RTS_MAKE_OUTPUT();
|
||||
RS232RTS_CLEAR();
|
||||
RS232CTS_SELECT();
|
||||
RS232CTS_MAKE_INPUT();
|
||||
}
|
||||
|
||||
/**
|
||||
* Indicate to host/client we are NOT ready to receive data. Sets the RTS pin
|
||||
* to low.
|
||||
*/
|
||||
void ctsrts_rts_clear(void) {
|
||||
RS232RTS_CLEAR();
|
||||
}
|
||||
|
||||
/**
|
||||
* Request host/client to send data. Sets the RTS pin to high.
|
||||
*/
|
||||
void ctsrts_rts_set(void) {
|
||||
RS232RTS_SET();
|
||||
}
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
irq(void)
|
||||
{
|
||||
if(RS232CTS_CHECK_IRQ()) {
|
||||
/* Change the flank triggering for the irq so we will detect next
|
||||
shift. */
|
||||
/* Change the flank triggering for the irq so we will detect next shift. */
|
||||
if(RS232CTS_READ()) {
|
||||
RS232CTS_IRQ_EDGE_SELECTD();
|
||||
} else {
|
||||
RS232CTS_IRQ_EDGE_SELECTU();
|
||||
}
|
||||
|
||||
sensors_changed(&ctsrts_sensor);
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
activate(void)
|
||||
{
|
||||
/*
|
||||
* Check current status on the CTS pin and set IRQ flank so we will detect
|
||||
* a shift.
|
||||
*/
|
||||
if(RS232CTS_READ()) {
|
||||
RS232CTS_IRQ_EDGE_SELECTD();
|
||||
} else {
|
||||
RS232CTS_IRQ_EDGE_SELECTU();
|
||||
}
|
||||
|
||||
sensors_add_irq(&ctsrts_sensor, RS232CTS_IRQ_PORT());
|
||||
RS232CTS_ENABLE_IRQ();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
deactivate(void)
|
||||
{
|
||||
RS232CTS_DISABLE_IRQ();
|
||||
sensors_remove_irq(&ctsrts_sensor, RS232CTS_IRQ_PORT());
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
active(void)
|
||||
{
|
||||
return RS232CTS_IRQ_ENABLED();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static unsigned int
|
||||
value(int type)
|
||||
{
|
||||
/*
|
||||
|
@ -139,17 +80,67 @@ value(int type)
|
|||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
configure(int type, void *c)
|
||||
configure(int type, int value)
|
||||
{
|
||||
switch (type) {
|
||||
case SENSORS_HW_INIT:
|
||||
RS232RTS_SELECT();
|
||||
RS232RTS_MAKE_OUTPUT();
|
||||
RS232RTS_CLEAR();
|
||||
RS232CTS_SELECT();
|
||||
RS232CTS_MAKE_INPUT();
|
||||
return 1;
|
||||
case SENSORS_ACTIVE:
|
||||
if (value) {
|
||||
if(!RS232CTS_IRQ_ENABLED()) {
|
||||
|
||||
/*
|
||||
* Check current status on the CTS pin and set IRQ flank so we
|
||||
* will detect a shift.
|
||||
*/
|
||||
if(RS232CTS_READ()) {
|
||||
RS232CTS_IRQ_EDGE_SELECTD();
|
||||
} else {
|
||||
RS232CTS_IRQ_EDGE_SELECTU();
|
||||
}
|
||||
|
||||
irq_port1_activate(RS232CTS_IRQ_PORT(), irq);
|
||||
RS232CTS_ENABLE_IRQ();
|
||||
}
|
||||
} else {
|
||||
RS232CTS_DISABLE_IRQ();
|
||||
irq_port1_deactivate(RS232CTS_IRQ_PORT());
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void *
|
||||
static int
|
||||
status(int type)
|
||||
{
|
||||
return NULL;
|
||||
switch (type) {
|
||||
case SENSORS_ACTIVE:
|
||||
case SENSORS_READY:
|
||||
return RS232CTS_IRQ_ENABLED();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
/**
|
||||
* Indicate to host/client we are NOT ready to receive data. Sets the RTS pin
|
||||
* to low.
|
||||
*/
|
||||
void ctsrts_rts_clear(void) {
|
||||
RS232RTS_CLEAR();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
/**
|
||||
* Request host/client to send data. Sets the RTS pin to high.
|
||||
*/
|
||||
void ctsrts_rts_set(void) {
|
||||
RS232RTS_SET();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
SENSORS_SENSOR(ctsrts_sensor, CTSRTS_SENSOR,
|
||||
init, irq, activate, deactivate, active,
|
||||
value, configure, status);
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: ctsrts-sensor.h,v 1.1 2006/06/18 07:49:33 adamdunkels Exp $
|
||||
* @(#)$Id: ctsrts-sensor.h,v 1.2 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -42,7 +42,7 @@
|
|||
#ifndef __CTSRTS_SENSOR_H__
|
||||
#define __CTSRTS_SENSOR_H__
|
||||
|
||||
#include "contiki-esb.h"
|
||||
#include "lib/sensors.h"
|
||||
|
||||
extern const struct sensors_sensor ctsrts_sensor;
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* $Id: esb-sensors.c,v 1.2 2007/03/19 00:34:43 adamdunkels Exp $
|
||||
* $Id: esb-sensors.c,v 1.3 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -41,7 +41,9 @@
|
|||
* sufficient for now.
|
||||
*/
|
||||
|
||||
#include "contiki-esb.h"
|
||||
#include "dev/hwconf.h"
|
||||
#include "dev/irq.h"
|
||||
#include "sys/energest.h"
|
||||
|
||||
HWCONF_PIN(SENSORSWITCH, 5, 5);
|
||||
|
||||
|
@ -51,6 +53,8 @@ esb_sensors_init(void)
|
|||
{
|
||||
SENSORSWITCH_SELECT();
|
||||
SENSORSWITCH_MAKE_OUTPUT();
|
||||
|
||||
irq_init();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
void
|
||||
|
|
218
platform/esb/dev/irq.c
Normal file
218
platform/esb/dev/irq.c
Normal file
|
@ -0,0 +1,218 @@
|
|||
/*
|
||||
* Copyright (c) 2009, Swedish Institute of Computer Science
|
||||
* 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 Institute 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 INSTITUTE 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 INSTITUTE 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.
|
||||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: irq.c,v 1.4 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
#include "lib/sensors.h"
|
||||
#include "dev/irq.h"
|
||||
#include "dev/lpm.h"
|
||||
#include <signal.h>
|
||||
|
||||
#define ADC12MCTL_NO(adcno) ((unsigned char *) ADC12MCTL0_)[adcno]
|
||||
|
||||
static int (* adc12_irq[8])(void);
|
||||
static int (* port1_irq[8])(void);
|
||||
static unsigned char adcflags;
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
interrupt(PORT1_VECTOR)
|
||||
irq_p1(void)
|
||||
{
|
||||
int i;
|
||||
ENERGEST_ON(ENERGEST_TYPE_IRQ);
|
||||
for(i = 0; i < 8; i++) {
|
||||
if((P1IFG & (1 << i)) && port1_irq[i] != NULL) {
|
||||
if((port1_irq[i])()) {
|
||||
LPM4_EXIT;
|
||||
}
|
||||
}
|
||||
}
|
||||
P1IFG = 0x00;
|
||||
ENERGEST_OFF(ENERGEST_TYPE_IRQ);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
interrupt (ADC_VECTOR)
|
||||
irq_adc(void)
|
||||
{
|
||||
int i;
|
||||
ENERGEST_ON(ENERGEST_TYPE_IRQ);
|
||||
for(i = 0; i < 8; i++) {
|
||||
if(adc12_irq[i] != NULL) {
|
||||
if((adc12_irq[i])()) {
|
||||
LPM4_EXIT;
|
||||
}
|
||||
}
|
||||
}
|
||||
ENERGEST_OFF(ENERGEST_TYPE_IRQ);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
void
|
||||
irq_init(void)
|
||||
{
|
||||
int i;
|
||||
adcflags = 0;
|
||||
for(i = 0; i < 8; i++) {
|
||||
adc12_irq[i] = NULL;
|
||||
port1_irq[i] = NULL;
|
||||
}
|
||||
/* Setup ADC12, ref., sampling time */
|
||||
ADC12CTL0 = REF2_5V | SHT0_10 | SHT1_10 | MSC;
|
||||
|
||||
/* Use sampling timer, repeat-sequence-of-channels */
|
||||
/* ADC12CTL1 = SHP | CONSEQ_3 | ADC12DIV_3; */
|
||||
ADC12CTL1 = SHP | CONSEQ_3 | ADC12DIV_7;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
void
|
||||
irq_port1_activate(unsigned char irqno, int (* irq)(void))
|
||||
{
|
||||
if(irqno < 8) {
|
||||
port1_irq[irqno] = irq;
|
||||
}
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
void
|
||||
irq_port1_deactivate(unsigned char irqno)
|
||||
{
|
||||
if(irqno < 8) {
|
||||
port1_irq[irqno] = NULL;
|
||||
}
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
/* Set lowest ADC to be start in sequence and highest to be interrupt
|
||||
enabled and set end-of-sequence on the highest active ADC */
|
||||
static void
|
||||
sethilo(void)
|
||||
{
|
||||
int c;
|
||||
|
||||
/* Clear start of sequence */
|
||||
ADC12CTL1 &= ~(CSTARTADD_15);
|
||||
|
||||
/* Set new start of sequence to lowest active memory holder */
|
||||
for(c = 0; c < 8; c++) {
|
||||
if(adcflags & (1 << c)) {
|
||||
ADC12CTL1 |= (c * CSTARTADD_1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* Clear all interrupts and end-of-sequences */
|
||||
ADC12IE = 0;
|
||||
for(c = 0; c < 8; c++) {
|
||||
ADC12MCTL_NO(c) &= ~EOS;
|
||||
}
|
||||
|
||||
/* Set highest interrupt and end-of-sequence. This will generate one
|
||||
interrupt for each sequence of conversions. */
|
||||
for(c = 0; c < 8; c++) {
|
||||
if(adcflags & (128 >> c)) {
|
||||
ADC12IE |= 128 >> c;
|
||||
ADC12MCTL_NO(7 - c) |= EOS;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
void
|
||||
irq_adc12_activate(unsigned char adcno, unsigned char config,
|
||||
int (* irq)(void))
|
||||
{
|
||||
if(adcno >= 8) {
|
||||
return;
|
||||
}
|
||||
/* stop converting */
|
||||
ADC12CTL0 &= ~ENC;
|
||||
/* wait for conversion to stop */
|
||||
while(ADC12CTL0 & ADC12BUSY);
|
||||
ADC12CTL0 &= ~(ADC12ON | REFON);
|
||||
ADC12IE = 0;
|
||||
|
||||
/* clear any pending interrupts */
|
||||
ADC12IFG = 0;
|
||||
|
||||
adcflags |= (1 << adcno);
|
||||
|
||||
ADC12MCTL_NO(adcno) = config;
|
||||
|
||||
sethilo();
|
||||
|
||||
ADC12CTL0 |= ADC12ON | REFON;
|
||||
|
||||
adc12_irq[adcno] = irq;
|
||||
|
||||
/* Delay */
|
||||
clock_delay(20000);
|
||||
|
||||
ADC12CTL0 |= ENC | ADC12SC;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
void
|
||||
irq_adc12_deactivate(unsigned char adcno)
|
||||
{
|
||||
if(adcno >= 8) {
|
||||
return;
|
||||
}
|
||||
/* stop converting */
|
||||
ADC12CTL0 &= ~ENC;
|
||||
/* wait for conversion to stop */
|
||||
while(ADC12CTL0 & ADC12BUSY);
|
||||
ADC12CTL0 &= ~(ADC12ON | REFON);
|
||||
ADC12IE = 0;
|
||||
|
||||
/* clear any pending interrupts */
|
||||
ADC12IFG = 0;
|
||||
|
||||
adcflags &= ~(1 << adcno);
|
||||
|
||||
ADC12MCTL_NO(adcno) = 0;
|
||||
|
||||
sethilo();
|
||||
|
||||
adc12_irq[adcno] = NULL;
|
||||
|
||||
if(adcflags) {
|
||||
/* Turn on the ADC12 */
|
||||
ADC12CTL0 |= (ADC12ON | REFON);
|
||||
|
||||
/* Delay */
|
||||
clock_delay(20000);
|
||||
|
||||
/* Still active. Turn on the conversion. */
|
||||
ADC12CTL0 |= ENC | ADC12SC;
|
||||
}
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
int
|
||||
irq_adc12_active(unsigned char adcno)
|
||||
{
|
||||
return adcflags & (1 << adcno) ? 1 : 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
47
platform/esb/dev/irq.h
Normal file
47
platform/esb/dev/irq.h
Normal file
|
@ -0,0 +1,47 @@
|
|||
/*
|
||||
* Copyright (c) 2009, Swedish Institute of Computer Science
|
||||
* 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 Institute 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 INSTITUTE 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 INSTITUTE 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.
|
||||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: irq.h,v 1.3 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
#ifndef __IRQ_H__
|
||||
#define __IRQ_H__
|
||||
|
||||
void irq_init(void);
|
||||
|
||||
void irq_port1_activate(unsigned char irqno, int (* irq)(void));
|
||||
void irq_port1_deactivate(unsigned char irqno);
|
||||
|
||||
void irq_adc12_activate(unsigned char adcno, unsigned char config,
|
||||
int (* irq)(void));
|
||||
void irq_adc12_deactivate(unsigned char adcno);
|
||||
|
||||
int irq_adc12_active(unsigned char adcno);
|
||||
|
||||
#endif /* __IRQ_H__ */
|
|
@ -28,85 +28,70 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: pir-sensor.c,v 1.2 2006/10/09 21:08:51 nifi Exp $
|
||||
* @(#)$Id: pir-sensor.c,v 1.3 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
|
||||
#include "contiki-esb.h"
|
||||
#include "dev/pir-sensor.h"
|
||||
#include "dev/irq.h"
|
||||
#include "dev/hwconf.h"
|
||||
|
||||
const struct sensors_sensor pir_sensor;
|
||||
|
||||
static unsigned int pir;
|
||||
static unsigned char flags;
|
||||
|
||||
HWCONF_PIN(PIR, 1, 3);
|
||||
HWCONF_IRQ(PIR, 1, 3);
|
||||
#define PIR_IRQ() 3
|
||||
HWCONF_PIN(PIR, 1, PIR_IRQ());
|
||||
HWCONF_IRQ(PIR, 1, PIR_IRQ());
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
irq(void)
|
||||
{
|
||||
if(PIR_CHECK_IRQ()) {
|
||||
++pir;
|
||||
if(flags & PIR_ENABLE_EVENT) {
|
||||
sensors_changed(&pir_sensor);
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
init(void)
|
||||
{
|
||||
flags = PIR_ENABLE_EVENT;
|
||||
pir = 0;
|
||||
PIR_SELECT();
|
||||
PIR_MAKE_INPUT();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
activate(void)
|
||||
{
|
||||
sensors_add_irq(&pir_sensor, PIR_IRQ_PORT());
|
||||
PIR_ENABLE_IRQ();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
deactivate(void)
|
||||
{
|
||||
PIR_DISABLE_IRQ();
|
||||
sensors_remove_irq(&pir_sensor, PIR_IRQ_PORT());
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
active(void)
|
||||
{
|
||||
return PIR_IRQ_ENABLED();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static unsigned int
|
||||
value(int type)
|
||||
{
|
||||
return pir;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
configure(int type, void *c)
|
||||
configure(int type, int value)
|
||||
{
|
||||
if(c) {
|
||||
flags |= type & 0xff;
|
||||
switch (type) {
|
||||
case SENSORS_HW_INIT:
|
||||
pir = 0;
|
||||
PIR_SELECT();
|
||||
PIR_MAKE_INPUT();
|
||||
return 1;
|
||||
case SENSORS_ACTIVE:
|
||||
if (value) {
|
||||
if(!PIR_IRQ_ENABLED()) {
|
||||
irq_port1_activate(PIR_IRQ(), irq);
|
||||
PIR_ENABLE_IRQ();
|
||||
}
|
||||
} else {
|
||||
flags &= ~type & 0xff;
|
||||
PIR_DISABLE_IRQ();
|
||||
irq_port1_deactivate(PIR_IRQ());
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void *
|
||||
static int
|
||||
status(int type)
|
||||
{
|
||||
return (void *) (((int) (flags & type)) & 0xff);
|
||||
switch (type) {
|
||||
case SENSORS_ACTIVE:
|
||||
case SENSORS_READY:
|
||||
return PIR_IRQ_ENABLED();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
SENSORS_SENSOR(pir_sensor, PIR_SENSOR,
|
||||
init, irq, activate, deactivate, active,
|
||||
value, configure, status);
|
||||
|
|
|
@ -28,17 +28,15 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: pir-sensor.h,v 1.2 2006/10/09 21:08:51 nifi Exp $
|
||||
* @(#)$Id: pir-sensor.h,v 1.3 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
#ifndef __PIR_SENSOR_H__
|
||||
#define __PIR_SENSOR_H__
|
||||
|
||||
#include "contiki-esb.h"
|
||||
#include "lib/sensors.h"
|
||||
|
||||
extern const struct sensors_sensor pir_sensor;
|
||||
|
||||
#define PIR_SENSOR "PIR"
|
||||
|
||||
#define PIR_ENABLE_EVENT 1
|
||||
|
||||
#endif /* __PIR_SENSOR_H__ */
|
||||
|
|
|
@ -28,56 +28,26 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: radio-sensor.c,v 1.3 2007/11/28 21:26:35 nifi Exp $
|
||||
* @(#)$Id: radio-sensor.c,v 1.4 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
|
||||
#include "contiki-esb.h"
|
||||
#include "dev/radio-sensor.h"
|
||||
#include "dev/irq.h"
|
||||
#include <io.h>
|
||||
|
||||
#include "dev/tr1001.h"
|
||||
|
||||
const struct sensors_sensor radio_sensor;
|
||||
|
||||
unsigned int radio_sensor_signal;
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
init(void)
|
||||
{
|
||||
/* Initialization of ADC12 done by irq */
|
||||
|
||||
radio_sensor_signal = 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
irq(void)
|
||||
{
|
||||
radio_sensor_signal = ADC12MEM5;
|
||||
/* sensors_changed(&radio_sensor);*/
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
activate(void)
|
||||
{
|
||||
irq_adc12_activate(&radio_sensor, 5, INCH_5 + SREF_0);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
deactivate(void)
|
||||
{
|
||||
irq_adc12_deactivate(&radio_sensor, 5);
|
||||
radio_sensor_signal = 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
active(void)
|
||||
{
|
||||
return irq_adc12_active(5);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static unsigned int
|
||||
value(int type)
|
||||
{
|
||||
switch(type) {
|
||||
|
@ -85,22 +55,42 @@ value(int type)
|
|||
return tr1001_sstrength();
|
||||
case RADIO_SENSOR_LAST_VALUE:
|
||||
default:
|
||||
return ADC12MEM5; /* radio_sensor_signal; */
|
||||
return radio_sensor_signal;
|
||||
}
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
configure(int type, void *c)
|
||||
configure(int type, int value)
|
||||
{
|
||||
switch (type) {
|
||||
case SENSORS_HW_INIT:
|
||||
/* Initialization of ADC12 done by irq */
|
||||
radio_sensor_signal = 0;
|
||||
return 1;
|
||||
case SENSORS_ACTIVE:
|
||||
if (value) {
|
||||
if(!irq_adc12_active(5)) {
|
||||
irq_adc12_activate(5, (INCH_5 + SREF_0), irq);
|
||||
}
|
||||
} else {
|
||||
irq_adc12_deactivate(5);
|
||||
radio_sensor_signal = 0;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void *
|
||||
static int
|
||||
status(int type)
|
||||
{
|
||||
return NULL;
|
||||
switch (type) {
|
||||
case SENSORS_ACTIVE:
|
||||
case SENSORS_READY:
|
||||
return irq_adc12_active(5);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
SENSORS_SENSOR(radio_sensor, RADIO_SENSOR,
|
||||
init, irq, activate, deactivate, active,
|
||||
value, configure, status);
|
||||
|
|
|
@ -28,10 +28,10 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: sound-sensor.c,v 1.3 2008/07/08 12:35:05 nifi Exp $
|
||||
* @(#)$Id: sound-sensor.c,v 1.4 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
#include <stdlib.h>
|
||||
#include "contiki-esb.h"
|
||||
#include "dev/sound-sensor.h"
|
||||
#include "dev/irq.h"
|
||||
|
||||
#define MIC_MIN_SENS 150
|
||||
|
@ -40,7 +40,6 @@
|
|||
const struct sensors_sensor sound_sensor;
|
||||
|
||||
static unsigned int sound, micdiff, micmax, avgmax;
|
||||
char sound_pause;
|
||||
static int8_t mode;
|
||||
static int8_t sample_div;
|
||||
static int8_t ctr;
|
||||
|
@ -48,36 +47,26 @@ static int16_t *sample_buffer;
|
|||
static int buffer_size;
|
||||
static int buf_pos;
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
init(void)
|
||||
{
|
||||
/* Initialization of ADC12 done by irq */
|
||||
mode = 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
irq(void)
|
||||
{
|
||||
|
||||
if (!sound_pause) {
|
||||
micdiff = micdiff + abs(ADC12MEM4 - sound) - (micdiff >> 3);
|
||||
sound = ADC12MEM4;
|
||||
|
||||
if(mode == SAMPLE) {
|
||||
leds_invert(LEDS_RED);
|
||||
ctr++;
|
||||
if(ctr >= sample_div) {
|
||||
ctr = 0;
|
||||
sample_buffer[buf_pos++] = ADC12MEM4;
|
||||
sample_buffer[buf_pos++] = sound;
|
||||
if(buf_pos >= buffer_size) {
|
||||
mode = 0;
|
||||
leds_off(LEDS_RED);
|
||||
sensors_changed(&sound_sensor);
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* if (micdiff > MIC_MIN_SENS) { */
|
||||
/* sensors_changed(&sound_sensor); */
|
||||
/* } */
|
||||
|
@ -91,8 +80,6 @@ irq(void)
|
|||
/* if (micmax < micdiff) { */
|
||||
/* micmax = micdiff; */
|
||||
/* } */
|
||||
}
|
||||
|
||||
|
||||
/* if (micdiff > 2000) { */
|
||||
/* leds_on(LEDS_GREEN); */
|
||||
|
@ -104,37 +91,10 @@ irq(void)
|
|||
/* leds_on(LEDS_RED); */
|
||||
/* } */
|
||||
|
||||
sound = ADC12MEM4;
|
||||
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
activate(void)
|
||||
{
|
||||
sound = micdiff = micmax = 0;
|
||||
sound_pause = 0;
|
||||
mode = 0;
|
||||
ctr = 0;
|
||||
sample_div = 0;
|
||||
buf_pos = 0;
|
||||
avgmax = 5000;
|
||||
irq_adc12_activate(&sound_sensor, 4, INCH_0 + SREF_0);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
deactivate(void)
|
||||
{
|
||||
irq_adc12_deactivate(&sound_sensor, 4);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
active(void)
|
||||
{
|
||||
return irq_adc12_active(4);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static unsigned int
|
||||
value(int type)
|
||||
{
|
||||
/* try returning the max to see what values we get... */
|
||||
|
@ -146,34 +106,62 @@ value(int type)
|
|||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
configure(int type, void *c)
|
||||
configure(int type, int value)
|
||||
{
|
||||
switch (type) {
|
||||
case SENSORS_HW_INIT:
|
||||
/* Initialization of ADC12 done by irq */
|
||||
mode = 0;
|
||||
buffer_size = 0;
|
||||
return 1;
|
||||
case SENSORS_ACTIVE:
|
||||
if (value) {
|
||||
if(!irq_adc12_active(4)) {
|
||||
sound = micdiff = micmax = 0;
|
||||
mode = 0;
|
||||
ctr = 0;
|
||||
sample_div = 0;
|
||||
buf_pos = 0;
|
||||
avgmax = 5000;
|
||||
irq_adc12_activate(4, (INCH_0 + SREF_0), irq);
|
||||
}
|
||||
} else {
|
||||
irq_adc12_deactivate(4);
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
status(int type)
|
||||
{
|
||||
switch (type) {
|
||||
case SENSORS_ACTIVE:
|
||||
return irq_adc12_active(4);
|
||||
case SENSORS_READY:
|
||||
return (mode != SAMPLE) && irq_adc12_active(4);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
void
|
||||
sound_sensor_start_sample(void)
|
||||
{
|
||||
if(type == SOUND_SET_BUFFER_PTR) {
|
||||
sample_buffer = (int16_t *) c;
|
||||
} else if (type == SOUND_SET_BUFFER_SIZE) {
|
||||
buffer_size = (int) c;
|
||||
} else if (type == SOUND_SET_DIV) {
|
||||
sample_div = (int) c & 0xff;
|
||||
} else if(type == SOUND_START_SAMPLE) {
|
||||
if(buffer_size > 0) {
|
||||
leds_on(LEDS_RED);
|
||||
buf_pos = 0;
|
||||
ctr = 0;
|
||||
mode = SAMPLE;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void *
|
||||
status(int type)
|
||||
void
|
||||
sound_sensor_set_buffer(int16_t *buffer, int buf_size, int divider)
|
||||
{
|
||||
if(type == SOUND_SAMPLING) {
|
||||
return (void *) (mode == SAMPLE);
|
||||
}
|
||||
return NULL;
|
||||
sample_buffer = buffer;
|
||||
buffer_size = buf_size;
|
||||
sample_div = divider;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
SENSORS_SENSOR(sound_sensor, SOUND_SENSOR,
|
||||
init, irq, activate, deactivate, active,
|
||||
value, configure, status);
|
||||
|
|
|
@ -28,20 +28,18 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: sound-sensor.h,v 1.2 2008/04/25 15:55:37 joxe Exp $
|
||||
* @(#)$Id: sound-sensor.h,v 1.3 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
#ifndef __SOUND_SENSOR_H__
|
||||
#define __SOUND_SENSOR_H__
|
||||
|
||||
#include "contiki-esb.h"
|
||||
#include "lib/sensors.h"
|
||||
|
||||
extern const struct sensors_sensor sound_sensor;
|
||||
|
||||
#define SOUND_SENSOR "Sound"
|
||||
#define SOUND_SET_BUFFER_PTR 1
|
||||
#define SOUND_SET_BUFFER_SIZE 2
|
||||
#define SOUND_START_SAMPLE 3
|
||||
#define SOUND_SET_DIV 4
|
||||
#define SOUND_SAMPLING 1
|
||||
|
||||
void sound_sensor_start_sample();
|
||||
void sound_sensor_set_buffer(int16_t *buffer, int buf_size, int divider);
|
||||
|
||||
#endif /* __SOUND_SENSOR_H__ */
|
||||
|
|
|
@ -26,76 +26,66 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: temperature-sensor.c,v 1.1 2006/06/18 07:49:33 adamdunkels Exp $
|
||||
* $Id: temperature-sensor.c,v 1.2 2010/01/14 17:39:35 nifi Exp $
|
||||
*
|
||||
* -----------------------------------------------------------------
|
||||
*
|
||||
* Author : Adam Dunkels, Joakim Eriksson, Niclas Finne
|
||||
* Created : 2005-11-01
|
||||
* Updated : $Date: 2006/06/18 07:49:33 $
|
||||
* $Revision: 1.1 $
|
||||
* Updated : $Date: 2010/01/14 17:39:35 $
|
||||
* $Revision: 1.2 $
|
||||
*/
|
||||
|
||||
#include "dev/temperature-sensor.h"
|
||||
#include "dev/ds1629.h"
|
||||
|
||||
const struct sensors_sensor temperature_sensor;
|
||||
static unsigned char flags;
|
||||
static int active;
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
init(void)
|
||||
{
|
||||
flags = 0;
|
||||
ds1629_init();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
irq(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
activate(void)
|
||||
{
|
||||
flags |= 1;
|
||||
ds1629_start();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
deactivate(void)
|
||||
{
|
||||
flags &= ~1;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
active(void)
|
||||
{
|
||||
return (flags & 1);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static unsigned int
|
||||
value(int type)
|
||||
{
|
||||
unsigned int temp;
|
||||
signed int t = ds1629_temperature();
|
||||
signed int t;
|
||||
|
||||
t = ds1629_temperature();
|
||||
temp = ((t / 128) * 50);
|
||||
return temp;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
configure(int type, void *c)
|
||||
configure(int type, int value)
|
||||
{
|
||||
switch (type) {
|
||||
case SENSORS_HW_INIT:
|
||||
active = 0;
|
||||
ds1629_init();
|
||||
return 1;
|
||||
case SENSORS_ACTIVE:
|
||||
if (value) {
|
||||
if(!active) {
|
||||
active = 1;
|
||||
ds1629_start();
|
||||
}
|
||||
} else {
|
||||
active = 0;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void *
|
||||
static int
|
||||
status(int type)
|
||||
{
|
||||
return NULL;
|
||||
switch (type) {
|
||||
case SENSORS_ACTIVE:
|
||||
case SENSORS_READY:
|
||||
return active;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
SENSORS_SENSOR(temperature_sensor, TEMPERATURE_SENSOR,
|
||||
init, irq, activate, deactivate, active,
|
||||
value, configure, status);
|
||||
|
|
|
@ -28,85 +28,70 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: vib-sensor.c,v 1.3 2007/03/28 09:58:47 nifi Exp $
|
||||
* @(#)$Id: vib-sensor.c,v 1.4 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
|
||||
#include "contiki-esb.h"
|
||||
#include "dev/vib-sensor.h"
|
||||
#include "dev/irq.h"
|
||||
#include "dev/hwconf.h"
|
||||
|
||||
const struct sensors_sensor vib_sensor;
|
||||
|
||||
static unsigned int vib;
|
||||
static unsigned char flags;
|
||||
|
||||
HWCONF_PIN(VIB, 1, 4);
|
||||
HWCONF_IRQ(VIB, 1, 4);
|
||||
#define VIB_IRQ() 4
|
||||
HWCONF_PIN(VIB, 1, VIB_IRQ());
|
||||
HWCONF_IRQ(VIB, 1, VIB_IRQ());
|
||||
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
irq(void)
|
||||
{
|
||||
if(VIB_CHECK_IRQ()) {
|
||||
++vib;
|
||||
if(flags & VIB_ENABLE_EVENT) {
|
||||
sensors_changed(&vib_sensor);
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
init(void)
|
||||
{
|
||||
flags = VIB_ENABLE_EVENT;
|
||||
vib = 0;
|
||||
VIB_SELECT();
|
||||
VIB_MAKE_INPUT();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
activate(void)
|
||||
{
|
||||
sensors_add_irq(&vib_sensor, VIB_IRQ_PORT());
|
||||
VIB_ENABLE_IRQ();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
deactivate(void)
|
||||
{
|
||||
VIB_DISABLE_IRQ();
|
||||
sensors_remove_irq(&vib_sensor, VIB_IRQ_PORT());
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
active(void)
|
||||
{
|
||||
return VIB_IRQ_ENABLED();
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static unsigned int
|
||||
value(int type)
|
||||
{
|
||||
return vib;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static int
|
||||
configure(int type, void *c)
|
||||
configure(int type, int value)
|
||||
{
|
||||
if(c) {
|
||||
flags |= type & 0xff;
|
||||
switch (type) {
|
||||
case SENSORS_HW_INIT:
|
||||
vib = 0;
|
||||
VIB_SELECT();
|
||||
VIB_MAKE_INPUT();
|
||||
return 1;
|
||||
case SENSORS_ACTIVE:
|
||||
if (value) {
|
||||
if(!VIB_IRQ_ENABLED()) {
|
||||
irq_port1_activate(VIB_IRQ(), irq);
|
||||
VIB_ENABLE_IRQ();
|
||||
}
|
||||
} else {
|
||||
flags &= ~type & 0xff;
|
||||
VIB_DISABLE_IRQ();
|
||||
irq_port1_deactivate(VIB_IRQ());
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void *
|
||||
static int
|
||||
status(int type)
|
||||
{
|
||||
return (void *) (((int) (flags & type)) & 0xff);
|
||||
switch (type) {
|
||||
case SENSORS_ACTIVE:
|
||||
case SENSORS_READY:
|
||||
return VIB_IRQ_ENABLED();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
SENSORS_SENSOR(vib_sensor, VIB_SENSOR,
|
||||
init, irq, activate, deactivate, active,
|
||||
value, configure, status);
|
||||
|
|
|
@ -28,17 +28,15 @@
|
|||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: vib-sensor.h,v 1.2 2006/10/09 21:08:51 nifi Exp $
|
||||
* @(#)$Id: vib-sensor.h,v 1.3 2010/01/14 17:39:35 nifi Exp $
|
||||
*/
|
||||
#ifndef __VIB_SENSOR_H__
|
||||
#define __VIB_SENSOR_H__
|
||||
|
||||
#include "contiki-esb.h"
|
||||
#include "lib/sensors.h"
|
||||
|
||||
extern const struct sensors_sensor vib_sensor;
|
||||
|
||||
#define VIB_SENSOR "Vibration"
|
||||
|
||||
#define VIB_ENABLE_EVENT 1
|
||||
|
||||
#endif /* __VIB_SENSOR_H__ */
|
||||
|
|
Loading…
Reference in a new issue