Updated to match the new sensors API

This commit is contained in:
nifi 2010-01-14 20:01:18 +00:00
parent 4ffa7b95b7
commit dbe56e4666
7 changed files with 24 additions and 28 deletions

View file

@ -28,7 +28,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* @(#)$Id: ctsrts-sensor.c,v 1.2 2010/01/14 17:39:35 nifi Exp $ * @(#)$Id: ctsrts-sensor.c,v 1.3 2010/01/14 20:03:27 nifi Exp $
*/ */
/** /**
@ -49,8 +49,9 @@ const struct sensors_sensor ctsrts_sensor;
HWCONF_PIN(RS232RTS, 1, 7); HWCONF_PIN(RS232RTS, 1, 7);
HWCONF_PIN(RS232CTS, 1, 6); #define RS232CTS_IRQ() 6
HWCONF_IRQ(RS232CTS, 1, 6); HWCONF_PIN(RS232CTS, 1, RS232CTS_IRQ());
HWCONF_IRQ(RS232CTS, 1, RS232CTS_IRQ());
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
static int static int
@ -104,12 +105,12 @@ configure(int type, int value)
RS232CTS_IRQ_EDGE_SELECTU(); RS232CTS_IRQ_EDGE_SELECTU();
} }
irq_port1_activate(RS232CTS_IRQ_PORT(), irq); irq_port1_activate(RS232CTS_IRQ(), irq);
RS232CTS_ENABLE_IRQ(); RS232CTS_ENABLE_IRQ();
} }
} else { } else {
RS232CTS_DISABLE_IRQ(); RS232CTS_DISABLE_IRQ();
irq_port1_deactivate(RS232CTS_IRQ_PORT()); irq_port1_deactivate(RS232CTS_IRQ());
} }
return 1; return 1;
} }

View file

@ -1,4 +1,4 @@
# $Id: Makefile.sky,v 1.31 2010/01/14 15:50:13 joxe Exp $ # $Id: Makefile.sky,v 1.32 2010/01/14 20:01:18 nifi Exp $
ARCH=msp430.c leds.c watchdog.c spi.c ds2411.c \ ARCH=msp430.c leds.c watchdog.c spi.c ds2411.c \
@ -29,7 +29,7 @@ contiki-$(TARGET).a: ${addprefix $(OBJECTDIR)/,symbols.o}
NUMPAR=20 NUMPAR=20
IHEXFILE=tmpimage.ihex #IHEXFILE=tmpimage.ihex
# Check if we are running under Windows # Check if we are running under Windows
ifdef OS ifdef OS
@ -87,8 +87,8 @@ ifdef MOTE
$(MAKE) sky-u.$(subst /,-,$(word $(MOTE), $(MOTES))) $(MAKE) sky-u.$(subst /,-,$(word $(MOTE), $(MOTES)))
else # MOTE else # MOTE
%.upload: %.ihex %.upload: %.ihex
cp $< $(IHEXFILE) # cp $< $(IHEXFILE)
$(MAKE) sky-reset sky-upload $(MAKE) sky-reset sky-upload IHEXFILE=$<
endif # MOTE endif # MOTE
sky-upload: sky-reset sky-upload: sky-reset

View file

@ -1,5 +1,5 @@
/* -*- C -*- */ /* -*- C -*- */
/* @(#)$Id: contiki-conf.h,v 1.63 2010/01/14 15:50:13 joxe Exp $ */ /* @(#)$Id: contiki-conf.h,v 1.64 2010/01/14 20:01:18 nifi Exp $ */
#ifndef CONTIKI_CONF_H #ifndef CONTIKI_CONF_H
#define CONTIKI_CONF_H #define CONTIKI_CONF_H
@ -42,7 +42,7 @@
#include "msp430def.h" #include "msp430def.h"
#ifndef RF_CHANNEL #ifndef RF_CHANNEL
#define RF_CHANNEL 26 #define RF_CHANNEL 16
#endif /* RF_CHANNEL */ #endif /* RF_CHANNEL */
#define ELFLOADER_CONF_TEXT_IN_ROM 0 #define ELFLOADER_CONF_TEXT_IN_ROM 0

View file

@ -26,21 +26,18 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $Id: acc-sensor.c,v 1.5 2010/01/14 15:50:13 joxe Exp $ * $Id: acc-sensor.c,v 1.6 2010/01/14 20:01:18 nifi Exp $
* *
* ----------------------------------------------------------------- * -----------------------------------------------------------------
* *
* Author : Adam Dunkels, Joakim Eriksson, Niclas Finne * Author : Adam Dunkels, Joakim Eriksson, Niclas Finne
* Created : 2005-11-01 * Created : 2005-11-01
* Updated : $Date: 2010/01/14 15:50:13 $ * Updated : $Date: 2010/01/14 20:01:18 $
* $Revision: 1.5 $ * $Revision: 1.6 $
*/ */
#include "dev/acc-sensor.h" #include "dev/acc-sensor.h"
#include <io.h> #include <io.h>
#include "dev/irq.h"
#include <stdio.h>
const struct sensors_sensor acc_sensor; const struct sensors_sensor acc_sensor;
static uint8_t active; static uint8_t active;

View file

@ -26,19 +26,18 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $Id: battery-sensor.c,v 1.5 2010/01/14 15:50:14 joxe Exp $ * $Id: battery-sensor.c,v 1.6 2010/01/14 20:01:18 nifi Exp $
* *
* ----------------------------------------------------------------- * -----------------------------------------------------------------
* *
* Author : Adam Dunkels, Joakim Eriksson, Niclas Finne * Author : Adam Dunkels, Joakim Eriksson, Niclas Finne
* Created : 2005-11-01 * Created : 2005-11-01
* Updated : $Date: 2010/01/14 15:50:14 $ * Updated : $Date: 2010/01/14 20:01:18 $
* $Revision: 1.5 $ * $Revision: 1.6 $
*/ */
#include "dev/battery-sensor.h" #include "dev/battery-sensor.h"
#include <io.h> #include <io.h>
#include "dev/irq.h"
const struct sensors_sensor battery_sensor; const struct sensors_sensor battery_sensor;
static uint8_t active; static uint8_t active;

View file

@ -28,7 +28,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* @(#)$Id: button-sensor.c,v 1.3 2010/01/14 15:50:14 joxe Exp $ * @(#)$Id: button-sensor.c,v 1.4 2010/01/14 20:01:19 nifi Exp $
*/ */
#include "lib/sensors.h" #include "lib/sensors.h"
#include "dev/hwconf.h" #include "dev/hwconf.h"
@ -60,8 +60,7 @@ interrupt(PORT2_VECTOR)
ENERGEST_OFF(ENERGEST_TYPE_IRQ); ENERGEST_OFF(ENERGEST_TYPE_IRQ);
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
static int
static unsigned int
value(int type) value(int type)
{ {
return BUTTON_READ() || !timer_expired(&debouncetimer); return BUTTON_READ() || !timer_expired(&debouncetimer);
@ -85,6 +84,7 @@ configure(int type, int c)
} else { } else {
BUTTON_DISABLE_IRQ(); BUTTON_DISABLE_IRQ();
} }
return 1;
} }
return 0; return 0;
} }

View file

@ -28,18 +28,17 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* @(#)$Id: radio-sensor.c,v 1.5 2010/01/14 15:50:14 joxe Exp $ * @(#)$Id: radio-sensor.c,v 1.6 2010/01/14 20:01:19 nifi Exp $
*/ */
#include "lib/sensors.h" #include "lib/sensors.h"
#include "dev/irq.h"
#include "dev/cc2420.h" #include "dev/cc2420.h"
#include "dev/radio-sensor.h" #include "dev/radio-sensor.h"
const struct sensors_sensor radio_sensor; const struct sensors_sensor radio_sensor;
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
static unsigned int static int
value(int type) value(int type)
{ {
switch(type) { switch(type) {
@ -60,7 +59,7 @@ configure(int type, int c)
static int static int
status(int type) status(int type)
{ {
return NULL; return 0;
} }
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
SENSORS_SENSOR(radio_sensor, RADIO_SENSOR, SENSORS_SENSOR(radio_sensor, RADIO_SENSOR,