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.
*
* @(#)$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 "dev/hwconf.h"
@ -60,8 +60,7 @@ interrupt(PORT2_VECTOR)
ENERGEST_OFF(ENERGEST_TYPE_IRQ);
}
/*---------------------------------------------------------------------------*/
static unsigned int
static int
value(int type)
{
return BUTTON_READ() || !timer_expired(&debouncetimer);
@ -85,6 +84,7 @@ configure(int type, int c)
} else {
BUTTON_DISABLE_IRQ();
}
return 1;
}
return 0;
}