Make netsim more like the esb target
This commit is contained in:
parent
11c1762a62
commit
bc8016543a
8 changed files with 59 additions and 45 deletions
|
@ -12,7 +12,7 @@ SENSORS = sensors.c beep.c button-sensor.c pir-sensor.c vib-sensor.c \
|
||||||
NETSIM = ether.c ethernode.c ethernode-drv.c lpm.c \
|
NETSIM = ether.c ethernode.c ethernode-drv.c lpm.c \
|
||||||
tapdev-drv.c tapdev-service.c tapdev.c rs232.c flash.c \
|
tapdev-drv.c tapdev-service.c tapdev.c rs232.c flash.c \
|
||||||
node.c nodes.c sensor.c display.c random.c radio.c \
|
node.c nodes.c sensor.c display.c random.c radio.c \
|
||||||
dlloader.c main.c init.c contiki-main.c symtab.c symbols.c #tr1001.c tr1001-drv.c
|
dlloader.c main.c init.c contiki-main.c symtab.c symbols.c tr1001.c tr1001-drv.c
|
||||||
|
|
||||||
CONTIKI_TARGET_SOURCEFILES = $(NETSIM) $(SENSORS)
|
CONTIKI_TARGET_SOURCEFILES = $(NETSIM) $(SENSORS)
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* $Id: contiki-esb.h,v 1.1 2006/06/17 22:41:33 adamdunkels Exp $
|
* $Id: contiki-esb.h,v 1.2 2006/10/10 15:58:31 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -60,4 +60,6 @@
|
||||||
|
|
||||||
#include "dev/beep.h"
|
#include "dev/beep.h"
|
||||||
|
|
||||||
|
#include "node-id.h"
|
||||||
|
|
||||||
#endif /* __CONTIKI_ESB_H__ */
|
#endif /* __CONTIKI_ESB_H__ */
|
||||||
|
|
|
@ -9,4 +9,6 @@ extern const struct sensors_sensor pir_sensor;
|
||||||
|
|
||||||
void pir_sensor_changed(int strength);
|
void pir_sensor_changed(int strength);
|
||||||
|
|
||||||
|
#define PIR_ENABLE_EVENT 1
|
||||||
|
|
||||||
#endif /* __PIR_SENSOR_H__ */
|
#endif /* __PIR_SENSOR_H__ */
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* $Id: rs232.c,v 1.1 2006/06/17 22:41:36 adamdunkels Exp $
|
* $Id: rs232.c,v 1.2 2006/10/10 15:58:31 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -44,6 +44,12 @@
|
||||||
void
|
void
|
||||||
rs232_set_input(int (* f)(unsigned char))
|
rs232_set_input(int (* f)(unsigned char))
|
||||||
{
|
{
|
||||||
printf("rs232_set_input(%p)\n", f);
|
/* printf("rs232_set_input(%p)\n", f);*/
|
||||||
|
}
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
void
|
||||||
|
slip_arch_writeb(unsigned char c)
|
||||||
|
{
|
||||||
|
printf("%c", c);
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* @(#)$Id: tr1001-drv.c,v 1.1 2006/06/17 22:41:36 adamdunkels Exp $
|
* @(#)$Id: tr1001-drv.c,v 1.2 2006/10/10 15:58:31 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "contiki-esb.h"
|
#include "contiki-esb.h"
|
||||||
|
@ -55,7 +55,7 @@ PROCESS_THREAD(tr1001_drv_process, ev, data)
|
||||||
uip_len = tr1001_poll();
|
uip_len = tr1001_poll();
|
||||||
|
|
||||||
if(uip_len > 0) {
|
if(uip_len > 0) {
|
||||||
uip_len = hc_inflate();
|
uip_len = hc_inflate(&uip_buf[UIP_LLH_LEN], uip_len);
|
||||||
tcpip_input();
|
tcpip_input();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -72,10 +72,8 @@ tr1001_drv_request_poll(void)
|
||||||
u8_t
|
u8_t
|
||||||
tr1001_drv_send(void)
|
tr1001_drv_send(void)
|
||||||
{
|
{
|
||||||
int len;
|
uip_len = hc_compress(&uip_buf[UIP_LLH_LEN], uip_len);
|
||||||
|
return tr1001_send(&uip_buf[UIP_LLH_LEN], uip_len);
|
||||||
len = hc_compress();
|
|
||||||
return tr1001_send(&uip_buf[UIP_LLH_LEN], len);
|
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
*
|
*
|
||||||
* This file is part of the Contiki operating system.
|
* This file is part of the Contiki operating system.
|
||||||
*
|
*
|
||||||
* $Id: tr1001.c,v 1.1 2006/06/17 22:41:36 adamdunkels Exp $
|
* $Id: tr1001.c,v 1.2 2006/10/10 15:58:31 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -92,6 +92,17 @@ tr1001_clear_packets(void)
|
||||||
packets_ok = packets_err = 0;
|
packets_ok = packets_err = 0;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
void
|
||||||
|
tr1001_clear_active(void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
|
int
|
||||||
|
tr1001_active(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
/*---------------------------------------------------------------------------*/
|
||||||
unsigned short
|
unsigned short
|
||||||
tr1001_sstrength_value(unsigned int type)
|
tr1001_sstrength_value(unsigned int type)
|
||||||
{
|
{
|
||||||
|
|
|
@ -29,14 +29,14 @@
|
||||||
* This file is part of the Configurable Sensor Network Application
|
* This file is part of the Configurable Sensor Network Application
|
||||||
* Architecture for sensor nodes running the Contiki operating system.
|
* Architecture for sensor nodes running the Contiki operating system.
|
||||||
*
|
*
|
||||||
* $Id: vib-sensor.h,v 1.1 2006/06/17 22:41:36 adamdunkels Exp $
|
* $Id: vib-sensor.h,v 1.2 2006/10/10 15:58:31 adamdunkels 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: 2006/06/17 22:41:36 $
|
* Updated : $Date: 2006/10/10 15:58:31 $
|
||||||
* $Revision: 1.1 $
|
* $Revision: 1.2 $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __VIB_SENSOR_H__
|
#ifndef __VIB_SENSOR_H__
|
||||||
|
@ -50,4 +50,6 @@ extern const struct sensors_sensor vib_sensor;
|
||||||
|
|
||||||
void vib_sensor_changed(void);
|
void vib_sensor_changed(void);
|
||||||
|
|
||||||
|
#define VIB_ENABLE_EVENT 1
|
||||||
|
|
||||||
#endif /* __VIB_SENSOR_H__ */
|
#endif /* __VIB_SENSOR_H__ */
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
*
|
*
|
||||||
* Author: Adam Dunkels <adam@sics.se>
|
* Author: Adam Dunkels <adam@sics.se>
|
||||||
*
|
*
|
||||||
* $Id: ethernode-drv.c,v 1.3 2006/10/09 11:56:49 adamdunkels Exp $
|
* $Id: ethernode-drv.c,v 1.4 2006/10/10 15:58:31 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "contiki.h"
|
#include "contiki.h"
|
||||||
|
@ -76,13 +76,6 @@ PROCESS_THREAD(ethernode_drv_process, ev, data)
|
||||||
|
|
||||||
uip_len = hc_inflate(&uip_buf[UIP_LLH_LEN], uip_len);
|
uip_len = hc_inflate(&uip_buf[UIP_LLH_LEN], uip_len);
|
||||||
|
|
||||||
{
|
|
||||||
char buf[40];
|
|
||||||
tcpdump_format(&uip_buf[UIP_LLH_LEN], uip_len, buf, sizeof(buf));
|
|
||||||
printf("radio_sniffer: packet length %d, %s\n", uip_len, buf);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
tapdev_send_raw();
|
tapdev_send_raw();
|
||||||
/* if(uip_fw_forward() == UIP_FW_LOCAL)*/ {
|
/* if(uip_fw_forward() == UIP_FW_LOCAL)*/ {
|
||||||
/* A frame was avaliable (and is now read into the uip_buf), so
|
/* A frame was avaliable (and is now read into the uip_buf), so
|
||||||
|
|
Loading…
Add table
Reference in a new issue