added Contiki Filesystem (CFS) support in COOJA
This commit is contained in:
parent
84cd6ed882
commit
dd0890b4dd
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile.cooja,v 1.6 2006/10/06 10:44:03 fros4943 Exp $
|
||||
# $Id: Makefile.cooja,v 1.7 2006/10/11 14:14:41 fros4943 Exp $
|
||||
|
||||
## The COOJA Simulator Contiki platform Makefile
|
||||
##
|
||||
|
@ -31,9 +31,9 @@ COOJA_BASE = simEnvChange.c irq.c cooja_mt.c cooja_mtarch.c
|
|||
|
||||
COOJA_INTFS = beep.c button-sensor.c ip.c leds-arch.c moteid.c \
|
||||
pir-sensor.c radio-arch.c rs232.c vib-sensor.c \
|
||||
clock.c log.c radio-sensor.c
|
||||
clock.c log.c radio-sensor.c cfs-cooja.c
|
||||
|
||||
CORE_FILES = random.c sensors.c leds.c serial.c
|
||||
CORE_FILES = random.c sensors.c leds.c serial.c cfs.c
|
||||
|
||||
CONTIKI_TARGET_SOURCEFILES = \
|
||||
$(COOJA_BASE) $(COOJA_INTFS) $(CORE_FILES) $(PROJECT_SOURCEFILES)
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: code_main_template,v 1.10 2006/10/09 14:42:55 fros4943 Exp $
|
||||
* $Id: code_main_template,v 1.11 2006/10/11 14:16:47 fros4943 Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -70,6 +70,7 @@
|
|||
#include "lib/sensors.h"
|
||||
#include "net/uip.h"
|
||||
#include "dev/radio-arch.h"
|
||||
#include "dev/cfs-cooja.h"
|
||||
#include "sys/etimer.h"
|
||||
#include "sys/cooja_mt.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue