Changed name of the simple-cc2420 module to cc2420: changed all function names and variable names from simple_cc2420_* to cc2420_*.

This commit is contained in:
adamdunkels 2008-07-02 09:05:40 +00:00
parent 6b187328bd
commit 66876625d4
10 changed files with 161 additions and 161 deletions

View file

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* @(#)$Id: radio-sensor.c,v 1.2 2008/07/01 21:02:51 adamdunkels Exp $
* @(#)$Id: radio-sensor.c,v 1.3 2008/07/02 09:05:41 adamdunkels Exp $
*/
#include "lib/sensors.h"
@ -71,10 +71,10 @@ value(int type)
{
switch(type) {
case RADIO_SENSOR_LAST_PACKET:
return simple_cc2420_last_correlation;
return cc2420_last_correlation;
case RADIO_SENSOR_LAST_VALUE:
default:
return simple_cc2420_last_rssi;
return cc2420_last_rssi;
}
}
/*---------------------------------------------------------------------------*/