return the last decoded value instead of the last value read during an interrupt

This commit is contained in:
nifi 2007-11-28 21:26:35 +00:00
parent 1c5fd0aa86
commit 377ad07d77
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* @(#)$Id: radio-sensor.c,v 1.2 2006/10/09 11:55:42 adamdunkels Exp $
* @(#)$Id: radio-sensor.c,v 1.3 2007/11/28 21:26:35 nifi Exp $
*/
#include "contiki-esb.h"
@ -85,7 +85,7 @@ value(int type)
return tr1001_sstrength();
case RADIO_SENSOR_LAST_VALUE:
default:
return radio_sensor_signal;
return ADC12MEM5; /* radio_sensor_signal; */
}
}
/*---------------------------------------------------------------------------*/