updated rpl-udp example with scalability test
This commit is contained in:
parent
3fd8c4db2d
commit
f4255fad0f
6 changed files with 1009 additions and 28 deletions
|
@ -1,7 +1,8 @@
|
||||||
all: udp-client udp-server
|
all: udp-client udp-server
|
||||||
APPS=servreg-hack
|
|
||||||
CONTIKI=../../..
|
CONTIKI=../../..
|
||||||
|
|
||||||
|
CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\"
|
||||||
|
|
||||||
ifdef WITH_COMPOWER
|
ifdef WITH_COMPOWER
|
||||||
APPS+=powertrace
|
APPS+=powertrace
|
||||||
CFLAGS+= -DCONTIKIMAC_CONF_COMPOWER=1 -DWITH_COMPOWER=1 -DQUEUEBUF_CONF_NUM=4
|
CFLAGS+= -DCONTIKIMAC_CONF_COMPOWER=1 -DWITH_COMPOWER=1 -DQUEUEBUF_CONF_NUM=4
|
||||||
|
|
59
examples/ipv6/rpl-udp/project-conf.h
Normal file
59
examples/ipv6/rpl-udp/project-conf.h
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2015, Swedish Institute of Computer Science.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions
|
||||||
|
* are met:
|
||||||
|
* 1. Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* 3. Neither the name of the Institute nor the names of its contributors
|
||||||
|
* may be used to endorse or promote products derived from this software
|
||||||
|
* without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
||||||
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||||
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||||
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||||
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
|
* SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef PROJECT_CONF_H_
|
||||||
|
#define PROJECT_CONF_H_
|
||||||
|
|
||||||
|
#undef NBR_TABLE_CONF_MAX_NEIGHBORS
|
||||||
|
#undef UIP_CONF_MAX_ROUTES
|
||||||
|
|
||||||
|
#ifdef TEST_MORE_ROUTES
|
||||||
|
/* configure number of neighbors and routes */
|
||||||
|
#define NBR_TABLE_CONF_MAX_NEIGHBORS 10
|
||||||
|
#define UIP_CONF_MAX_ROUTES 30
|
||||||
|
#else
|
||||||
|
/* configure number of neighbors and routes */
|
||||||
|
#define NBR_TABLE_CONF_MAX_NEIGHBORS 10
|
||||||
|
#define UIP_CONF_MAX_ROUTES 10
|
||||||
|
#endif /* TEST_MORE_ROUTES */
|
||||||
|
|
||||||
|
#undef NETSTACK_CONF_RDC
|
||||||
|
#define NETSTACK_CONF_RDC nullrdc_driver
|
||||||
|
#undef NULLRDC_CONF_802154_AUTOACK
|
||||||
|
#define NULLRDC_CONF_802154_AUTOACK 1
|
||||||
|
|
||||||
|
/* Define as minutes */
|
||||||
|
#define RPL_CONF_DEFAULT_LIFETIME_UNIT 60
|
||||||
|
|
||||||
|
/* 10 minutes lifetime of routes */
|
||||||
|
#define RPL_CONF_DEFAULT_LIFETIME 10
|
||||||
|
|
||||||
|
#define RPL_CONF_DEFAULT_ROUTE_INFINITE_LIFETIME 1
|
||||||
|
|
||||||
|
#endif /* PROJECT_CONF_H_ */
|
729
examples/ipv6/rpl-udp/rpl-udp-scale.csc
Normal file
729
examples/ipv6/rpl-udp/rpl-udp-scale.csc
Normal file
|
@ -0,0 +1,729 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<simconf>
|
||||||
|
<project EXPORT="discard">[APPS_DIR]/mrm</project>
|
||||||
|
<project EXPORT="discard">[APPS_DIR]/mspsim</project>
|
||||||
|
<project EXPORT="discard">[APPS_DIR]/avrora</project>
|
||||||
|
<project EXPORT="discard">[APPS_DIR]/serial_socket</project>
|
||||||
|
<project EXPORT="discard">[APPS_DIR]/collect-view</project>
|
||||||
|
<project EXPORT="discard">[APPS_DIR]/powertracker</project>
|
||||||
|
<simulation>
|
||||||
|
<title>RPL up and downstream scaleability test network using IPv6 and RPL</title>
|
||||||
|
<randomseed>generated</randomseed>
|
||||||
|
<motedelay_us>5000000</motedelay_us>
|
||||||
|
<radiomedium>
|
||||||
|
org.contikios.cooja.radiomediums.UDGM
|
||||||
|
<transmitting_range>50.0</transmitting_range>
|
||||||
|
<interference_range>50.0</interference_range>
|
||||||
|
<success_ratio_tx>1.0</success_ratio_tx>
|
||||||
|
<success_ratio_rx>1.0</success_ratio_rx>
|
||||||
|
</radiomedium>
|
||||||
|
<events>
|
||||||
|
<logoutput>40000</logoutput>
|
||||||
|
</events>
|
||||||
|
<motetype>
|
||||||
|
org.contikios.cooja.mspmote.SkyMoteType
|
||||||
|
<identifier>sky1</identifier>
|
||||||
|
<description>Sky Mote Type #sky1</description>
|
||||||
|
<source EXPORT="discard">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-server.c</source>
|
||||||
|
<commands EXPORT="discard">make SERVER_REPLY=1 clean udp-server.sky TARGET=sky DEFINES=TEST_MORE_ROUTES=1</commands>
|
||||||
|
<firmware EXPORT="copy">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-server.sky</firmware>
|
||||||
|
<moteinterface>org.contikios.cooja.interfaces.Position</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.interfaces.RimeAddress</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.interfaces.IPAddress</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.interfaces.Mote2MoteRelations</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.interfaces.MoteAttributes</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.MspClock</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.MspMoteID</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.SkyButton</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.SkyFlash</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.SkyCoffeeFilesystem</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.Msp802154Radio</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.MspSerial</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.SkyLED</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.MspDebugOutput</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.SkyTemperature</moteinterface>
|
||||||
|
</motetype>
|
||||||
|
<motetype>
|
||||||
|
org.contikios.cooja.mspmote.SkyMoteType
|
||||||
|
<identifier>sky2</identifier>
|
||||||
|
<description>Sky Mote Type #sky2</description>
|
||||||
|
<source EXPORT="discard">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-client.c</source>
|
||||||
|
<commands EXPORT="discard">make SERVER_REPLY=1 clean udp-client.sky TARGET=sky</commands>
|
||||||
|
<firmware EXPORT="copy">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-client.sky</firmware>
|
||||||
|
<moteinterface>org.contikios.cooja.interfaces.Position</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.interfaces.RimeAddress</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.interfaces.IPAddress</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.interfaces.Mote2MoteRelations</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.interfaces.MoteAttributes</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.MspClock</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.MspMoteID</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.SkyButton</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.SkyFlash</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.SkyCoffeeFilesystem</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.Msp802154Radio</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.MspSerial</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.SkyLED</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.MspDebugOutput</moteinterface>
|
||||||
|
<moteinterface>org.contikios.cooja.mspmote.interfaces.SkyTemperature</moteinterface>
|
||||||
|
</motetype>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>48.435974731198804</x>
|
||||||
|
<y>-66.16503914182063</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>1</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky1</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>-39.78380986481406</x>
|
||||||
|
<y>-48.10655064098382</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>2</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>127.9689727848476</x>
|
||||||
|
<y>91.71883780610729</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>3</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>154.92605604103275</x>
|
||||||
|
<y>40.97896551774433</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>4</id>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspSerial
|
||||||
|
<history>r~;</history>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>47.34887596588397</x>
|
||||||
|
<y>-30.341495695501195</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>5</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>47.13486576528276</x>
|
||||||
|
<y>32.944481932122315</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>6</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>-11.42091423859419</x>
|
||||||
|
<y>17.879870626121914</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>7</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>118.92746659954325</x>
|
||||||
|
<y>57.05973076244069</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>8</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>53.68872892015448</x>
|
||||||
|
<y>59.887319605093715</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>9</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>16.45706316609417</x>
|
||||||
|
<y>23.9075414163248</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>10</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>-13.423161364506493</x>
|
||||||
|
<y>-38.483037144768275</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>11</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>-9.034961217472201</x>
|
||||||
|
<y>44.411389162165406</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>12</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>-39.298891643282545</x>
|
||||||
|
<y>-3.9704359883635574</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>13</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>66.93880603404335</x>
|
||||||
|
<y>-42.39683727590697</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>14</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>94.81678343873172</x>
|
||||||
|
<y>26.921376811426246</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>15</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>-43.06618588715935</x>
|
||||||
|
<y>30.68867105530305</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>16</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>-34.02467970185502</x>
|
||||||
|
<y>-24.313824905298304</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>17</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>-28.750467760427494</x>
|
||||||
|
<y>48.01822457713635</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>18</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>124.95513738974614</x>
|
||||||
|
<y>20.140247172447996</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>19</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>15.703604317318808</x>
|
||||||
|
<y>-47.6710492173345</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>20</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>154.43072661267115</x>
|
||||||
|
<y>-3.279765376986134</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>21</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>121.18784314586934</x>
|
||||||
|
<y>-24.313824905298304</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>22</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>88.4612185198951</x>
|
||||||
|
<y>-49.763990463932714</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>23</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>24.745110502623138</x>
|
||||||
|
<y>-1.7100594420374744</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>24</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>94.06332458995635</x>
|
||||||
|
<y>-2.4635182908128352</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>25</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>-4.639784599615941</x>
|
||||||
|
<y>-9.998106778566445</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>26</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>2.4901685804620115</x>
|
||||||
|
<y>-60.89843789583528</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>27</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>103.10483077526068</x>
|
||||||
|
<y>96.99304974753483</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>28</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>8.922474678340558</x>
|
||||||
|
<y>59.320107308766765</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>29</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>58.650758697514384</x>
|
||||||
|
<y>2.8106936506146916</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>30</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
<mote>
|
||||||
|
<breakpoints />
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.interfaces.Position
|
||||||
|
<x>90.59867707439</x>
|
||||||
|
<y>67.97632874312737</y>
|
||||||
|
<z>0.0</z>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
|
<id>31</id>
|
||||||
|
</interface_config>
|
||||||
|
<motetype_identifier>sky2</motetype_identifier>
|
||||||
|
</mote>
|
||||||
|
</simulation>
|
||||||
|
<plugin>
|
||||||
|
org.contikios.cooja.plugins.SimControl
|
||||||
|
<width>289</width>
|
||||||
|
<z>1</z>
|
||||||
|
<height>184</height>
|
||||||
|
<location_x>31</location_x>
|
||||||
|
<location_y>41</location_y>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
org.contikios.cooja.plugins.Visualizer
|
||||||
|
<plugin_config>
|
||||||
|
<skin>org.contikios.cooja.plugins.skins.IDVisualizerSkin</skin>
|
||||||
|
<skin>org.contikios.cooja.plugins.skins.UDGMVisualizerSkin</skin>
|
||||||
|
<skin>org.contikios.cooja.plugins.skins.AttributeVisualizerSkin</skin>
|
||||||
|
<viewport>2.349818846983307 0.0 0.0 2.349818846983307 187.19773526533345 190.95275613586946</viewport>
|
||||||
|
</plugin_config>
|
||||||
|
<width>659</width>
|
||||||
|
<z>3</z>
|
||||||
|
<height>523</height>
|
||||||
|
<location_x>296</location_x>
|
||||||
|
<location_y>11</location_y>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
org.contikios.cooja.plugins.LogListener
|
||||||
|
<plugin_config>
|
||||||
|
<filter />
|
||||||
|
<formatted_time />
|
||||||
|
<coloring />
|
||||||
|
</plugin_config>
|
||||||
|
<width>937</width>
|
||||||
|
<z>4</z>
|
||||||
|
<height>349</height>
|
||||||
|
<location_x>21</location_x>
|
||||||
|
<location_y>464</location_y>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
org.contikios.cooja.plugins.ScriptRunner
|
||||||
|
<plugin_config>
|
||||||
|
<script>TIMEOUT(12000000, log.log("Total PRR " + totalPRR + "\n"));
|
||||||
|
packetsReceived= new Array();
|
||||||
|
packetsSent = new Array();
|
||||||
|
serverID = 1;
|
||||||
|
nodeCount = 31;
|
||||||
|
totalPRR = 0;
|
||||||
|
|
||||||
|
for(i = 0; i <= nodeCount; i++) {
|
||||||
|
packetsReceived[i] = 0;
|
||||||
|
packetsSent[i] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
while(1) {
|
||||||
|
YIELD();
|
||||||
|
|
||||||
|
msgArray = msg.split(' ');
|
||||||
|
if(msgArray[0].equals("#A")) {
|
||||||
|
if(msgArray[1].charAt(0) == 'r') {
|
||||||
|
// Received packet
|
||||||
|
senderID = id;
|
||||||
|
arr2 = msgArray[1].split(',')[0].slice(2).split('/');
|
||||||
|
recv = parseInt(arr2[0]);
|
||||||
|
sent = parseInt(arr2[1]);
|
||||||
|
log.log("Sent:" + sent + " Recv:" + recv + "\n");
|
||||||
|
packetsSent[senderID] = sent;
|
||||||
|
packetsReceived[senderID] = recv;
|
||||||
|
|
||||||
|
log.log("SenderID " + senderID + " PRR " + packetsReceived[senderID] / packetsSent[senderID] + "\n");
|
||||||
|
totalReceived = totalSent = 0;
|
||||||
|
for(i = serverID + 1; i <= nodeCount; i++) {
|
||||||
|
totalReceived += packetsReceived[i];
|
||||||
|
totalSent += packetsSent[i];
|
||||||
|
}
|
||||||
|
totalPRR = totalReceived / totalSent;
|
||||||
|
log.log("Total PRR " + totalPRR + " recv " + totalReceived + " sent " + totalSent + "\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}</script>
|
||||||
|
<active>true</active>
|
||||||
|
</plugin_config>
|
||||||
|
<width>600</width>
|
||||||
|
<z>0</z>
|
||||||
|
<height>700</height>
|
||||||
|
<location_x>946</location_x>
|
||||||
|
<location_y>6</location_y>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
org.contikios.cooja.plugins.MoteInterfaceViewer
|
||||||
|
<mote_arg>3</mote_arg>
|
||||||
|
<plugin_config>
|
||||||
|
<interface>Serial port</interface>
|
||||||
|
<scrollpos>0,0</scrollpos>
|
||||||
|
</plugin_config>
|
||||||
|
<width>350</width>
|
||||||
|
<z>2</z>
|
||||||
|
<height>300</height>
|
||||||
|
<location_x>976</location_x>
|
||||||
|
<location_y>36</location_y>
|
||||||
|
</plugin>
|
||||||
|
</simconf>
|
|
@ -1,12 +1,13 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<simconf>
|
<simconf>
|
||||||
<project EXPORT="discard">[CONTIKI_DIR]/tools/cooja/apps/mrm</project>
|
<project EXPORT="discard">[APPS_DIR]/mrm</project>
|
||||||
<project EXPORT="discard">[CONTIKI_DIR]/tools/cooja/apps/mspsim</project>
|
<project EXPORT="discard">[APPS_DIR]/mspsim</project>
|
||||||
<project EXPORT="discard">[CONTIKI_DIR]/tools/cooja/apps/avrora</project>
|
<project EXPORT="discard">[APPS_DIR]/avrora</project>
|
||||||
<project EXPORT="discard">[CONTIKI_DIR]/tools/cooja/apps/mobility</project>
|
<project EXPORT="discard">[APPS_DIR]/serial_socket</project>
|
||||||
|
<project EXPORT="discard">[APPS_DIR]/collect-view</project>
|
||||||
|
<project EXPORT="discard">[APPS_DIR]/powertracker</project>
|
||||||
<simulation>
|
<simulation>
|
||||||
<title>Data collection network using IPv6 and RPL</title>
|
<title>Data collection network using IPv6 and RPL</title>
|
||||||
<delaytime>0</delaytime>
|
|
||||||
<randomseed>generated</randomseed>
|
<randomseed>generated</randomseed>
|
||||||
<motedelay_us>5000000</motedelay_us>
|
<motedelay_us>5000000</motedelay_us>
|
||||||
<radiomedium>
|
<radiomedium>
|
||||||
|
@ -24,7 +25,7 @@
|
||||||
<identifier>sky1</identifier>
|
<identifier>sky1</identifier>
|
||||||
<description>Sky Mote Type #sky1</description>
|
<description>Sky Mote Type #sky1</description>
|
||||||
<source EXPORT="discard">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-server.c</source>
|
<source EXPORT="discard">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-server.c</source>
|
||||||
<commands EXPORT="discard">make udp-server.sky TARGET=sky</commands>
|
<commands EXPORT="discard">make clean udp-server.sky TARGET=sky DEFINES=TEST_MORE_ROUTES=1</commands>
|
||||||
<firmware EXPORT="copy">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-server.sky</firmware>
|
<firmware EXPORT="copy">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-server.sky</firmware>
|
||||||
<moteinterface>org.contikios.cooja.interfaces.Position</moteinterface>
|
<moteinterface>org.contikios.cooja.interfaces.Position</moteinterface>
|
||||||
<moteinterface>org.contikios.cooja.interfaces.RimeAddress</moteinterface>
|
<moteinterface>org.contikios.cooja.interfaces.RimeAddress</moteinterface>
|
||||||
|
@ -47,7 +48,7 @@
|
||||||
<identifier>sky2</identifier>
|
<identifier>sky2</identifier>
|
||||||
<description>Sky Mote Type #sky2</description>
|
<description>Sky Mote Type #sky2</description>
|
||||||
<source EXPORT="discard">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-client.c</source>
|
<source EXPORT="discard">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-client.c</source>
|
||||||
<commands EXPORT="discard">make udp-client.sky TARGET=sky</commands>
|
<commands EXPORT="discard">make clean udp-client.sky TARGET=sky</commands>
|
||||||
<firmware EXPORT="copy">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-client.sky</firmware>
|
<firmware EXPORT="copy">[CONTIKI_DIR]/examples/ipv6/rpl-udp/udp-client.sky</firmware>
|
||||||
<moteinterface>org.contikios.cooja.interfaces.Position</moteinterface>
|
<moteinterface>org.contikios.cooja.interfaces.Position</moteinterface>
|
||||||
<moteinterface>org.contikios.cooja.interfaces.RimeAddress</moteinterface>
|
<moteinterface>org.contikios.cooja.interfaces.RimeAddress</moteinterface>
|
||||||
|
@ -73,6 +74,10 @@
|
||||||
<y>-66.16503914182063</y>
|
<y>-66.16503914182063</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>1</id>
|
<id>1</id>
|
||||||
|
@ -87,6 +92,10 @@
|
||||||
<y>98.28771308774003</y>
|
<y>98.28771308774003</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>2</id>
|
<id>2</id>
|
||||||
|
@ -101,6 +110,10 @@
|
||||||
<y>91.71883780610729</y>
|
<y>91.71883780610729</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>3</id>
|
<id>3</id>
|
||||||
|
@ -115,6 +128,10 @@
|
||||||
<y>92.47229665488265</y>
|
<y>92.47229665488265</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>4</id>
|
<id>4</id>
|
||||||
|
@ -129,6 +146,10 @@
|
||||||
<y>-30.341495695501195</y>
|
<y>-30.341495695501195</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>5</id>
|
<id>5</id>
|
||||||
|
@ -143,6 +164,10 @@
|
||||||
<y>32.944481932122315</y>
|
<y>32.944481932122315</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>6</id>
|
<id>6</id>
|
||||||
|
@ -157,6 +182,10 @@
|
||||||
<y>17.879870626121914</y>
|
<y>17.879870626121914</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>7</id>
|
<id>7</id>
|
||||||
|
@ -171,6 +200,10 @@
|
||||||
<y>57.05973076244069</y>
|
<y>57.05973076244069</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>8</id>
|
<id>8</id>
|
||||||
|
@ -185,6 +218,10 @@
|
||||||
<y>59.887319605093715</y>
|
<y>59.887319605093715</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>9</id>
|
<id>9</id>
|
||||||
|
@ -199,6 +236,10 @@
|
||||||
<y>23.9075414163248</y>
|
<y>23.9075414163248</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>10</id>
|
<id>10</id>
|
||||||
|
@ -213,6 +254,10 @@
|
||||||
<y>75.14274313304935</y>
|
<y>75.14274313304935</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>11</id>
|
<id>11</id>
|
||||||
|
@ -227,6 +272,10 @@
|
||||||
<y>85.6911670159044</y>
|
<y>85.6911670159044</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>12</id>
|
<id>12</id>
|
||||||
|
@ -241,6 +290,10 @@
|
||||||
<y>-3.9704359883635574</y>
|
<y>-3.9704359883635574</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>13</id>
|
<id>13</id>
|
||||||
|
@ -255,6 +308,10 @@
|
||||||
<y>-42.39683727590697</y>
|
<y>-42.39683727590697</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>14</id>
|
<id>14</id>
|
||||||
|
@ -269,6 +326,10 @@
|
||||||
<y>26.921376811426246</y>
|
<y>26.921376811426246</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>15</id>
|
<id>15</id>
|
||||||
|
@ -283,6 +344,10 @@
|
||||||
<y>30.68867105530305</y>
|
<y>30.68867105530305</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>16</id>
|
<id>16</id>
|
||||||
|
@ -297,6 +362,10 @@
|
||||||
<y>-24.313824905298304</y>
|
<y>-24.313824905298304</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>17</id>
|
<id>17</id>
|
||||||
|
@ -311,6 +380,10 @@
|
||||||
<y>48.01822457713635</y>
|
<y>48.01822457713635</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>18</id>
|
<id>18</id>
|
||||||
|
@ -325,6 +398,10 @@
|
||||||
<y>20.140247172447996</y>
|
<y>20.140247172447996</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>19</id>
|
<id>19</id>
|
||||||
|
@ -339,6 +416,10 @@
|
||||||
<y>-47.6710492173345</y>
|
<y>-47.6710492173345</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>20</id>
|
<id>20</id>
|
||||||
|
@ -353,6 +434,10 @@
|
||||||
<y>92.47229665488265</y>
|
<y>92.47229665488265</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>21</id>
|
<id>21</id>
|
||||||
|
@ -367,6 +452,10 @@
|
||||||
<y>-24.313824905298304</y>
|
<y>-24.313824905298304</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>22</id>
|
<id>22</id>
|
||||||
|
@ -381,6 +470,10 @@
|
||||||
<y>-44.657213822233054</y>
|
<y>-44.657213822233054</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>23</id>
|
<id>23</id>
|
||||||
|
@ -395,6 +488,10 @@
|
||||||
<y>-1.7100594420374744</y>
|
<y>-1.7100594420374744</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>24</id>
|
<id>24</id>
|
||||||
|
@ -409,6 +506,10 @@
|
||||||
<y>-2.4635182908128352</y>
|
<y>-2.4635182908128352</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>25</id>
|
<id>25</id>
|
||||||
|
@ -423,6 +524,10 @@
|
||||||
<y>-9.998106778566445</y>
|
<y>-9.998106778566445</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>26</id>
|
<id>26</id>
|
||||||
|
@ -437,6 +542,10 @@
|
||||||
<y>-50.684884612435944</y>
|
<y>-50.684884612435944</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>27</id>
|
<id>27</id>
|
||||||
|
@ -451,6 +560,10 @@
|
||||||
<y>96.99304974753483</y>
|
<y>96.99304974753483</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>28</id>
|
<id>28</id>
|
||||||
|
@ -465,6 +578,10 @@
|
||||||
<y>59.320107308766765</y>
|
<y>59.320107308766765</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>29</id>
|
<id>29</id>
|
||||||
|
@ -479,6 +596,10 @@
|
||||||
<y>2.8106936506146916</y>
|
<y>2.8106936506146916</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>30</id>
|
<id>30</id>
|
||||||
|
@ -493,6 +614,10 @@
|
||||||
<y>67.97632874312737</y>
|
<y>67.97632874312737</y>
|
||||||
<z>0.0</z>
|
<z>0.0</z>
|
||||||
</interface_config>
|
</interface_config>
|
||||||
|
<interface_config>
|
||||||
|
org.contikios.cooja.mspmote.interfaces.MspClock
|
||||||
|
<deviation>1.0</deviation>
|
||||||
|
</interface_config>
|
||||||
<interface_config>
|
<interface_config>
|
||||||
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
org.contikios.cooja.mspmote.interfaces.MspMoteID
|
||||||
<id>31</id>
|
<id>31</id>
|
||||||
|
@ -503,10 +628,10 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
org.contikios.cooja.plugins.SimControl
|
org.contikios.cooja.plugins.SimControl
|
||||||
<width>259</width>
|
<width>259</width>
|
||||||
<z>1</z>
|
<z>3</z>
|
||||||
<height>184</height>
|
<height>184</height>
|
||||||
<location_x>0</location_x>
|
<location_x>3</location_x>
|
||||||
<location_y>0</location_y>
|
<location_y>15</location_y>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
org.contikios.cooja.plugins.Visualizer
|
org.contikios.cooja.plugins.Visualizer
|
||||||
|
@ -517,21 +642,23 @@
|
||||||
<viewport>2.349818846983307 0.0 0.0 2.349818846983307 150.19773526533348 176.95275613586946</viewport>
|
<viewport>2.349818846983307 0.0 0.0 2.349818846983307 150.19773526533348 176.95275613586946</viewport>
|
||||||
</plugin_config>
|
</plugin_config>
|
||||||
<width>520</width>
|
<width>520</width>
|
||||||
<z>3</z>
|
<z>2</z>
|
||||||
<height>523</height>
|
<height>523</height>
|
||||||
<location_x>269</location_x>
|
<location_x>14</location_x>
|
||||||
<location_y>14</location_y>
|
<location_y>210</location_y>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
org.contikios.cooja.plugins.LogListener
|
org.contikios.cooja.plugins.LogListener
|
||||||
<plugin_config>
|
<plugin_config>
|
||||||
<filter />
|
<filter />
|
||||||
|
<formatted_time />
|
||||||
|
<coloring />
|
||||||
</plugin_config>
|
</plugin_config>
|
||||||
<width>937</width>
|
<width>937</width>
|
||||||
<z>0</z>
|
<z>0</z>
|
||||||
<height>213</height>
|
<height>213</height>
|
||||||
<location_x>21</location_x>
|
<location_x>265</location_x>
|
||||||
<location_y>464</location_y>
|
<location_y>16</location_y>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
org.contikios.cooja.plugins.ScriptRunner
|
org.contikios.cooja.plugins.ScriptRunner
|
||||||
|
@ -574,11 +701,11 @@ while(1) {
|
||||||
}</script>
|
}</script>
|
||||||
<active>true</active>
|
<active>true</active>
|
||||||
</plugin_config>
|
</plugin_config>
|
||||||
<width>600</width>
|
<width>651</width>
|
||||||
<z>2</z>
|
<z>1</z>
|
||||||
<height>700</height>
|
<height>550</height>
|
||||||
<location_x>665</location_x>
|
<location_x>547</location_x>
|
||||||
<location_y>6</location_y>
|
<location_y>181</location_y>
|
||||||
</plugin>
|
</plugin>
|
||||||
</simconf>
|
</simconf>
|
||||||
|
|
||||||
|
|
|
@ -40,12 +40,17 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
/* Only for TMOTE Sky? */
|
||||||
|
#include "dev/serial-line.h"
|
||||||
|
#include "dev/uart1.h"
|
||||||
|
#include "net/ipv6/uip-ds6-route.h"
|
||||||
|
|
||||||
#define UDP_CLIENT_PORT 8765
|
#define UDP_CLIENT_PORT 8765
|
||||||
#define UDP_SERVER_PORT 5678
|
#define UDP_SERVER_PORT 5678
|
||||||
|
|
||||||
#define UDP_EXAMPLE_ID 190
|
#define UDP_EXAMPLE_ID 190
|
||||||
|
|
||||||
#define DEBUG DEBUG_PRINT
|
#define DEBUG DEBUG_FULL
|
||||||
#include "net/ip/uip-debug.h"
|
#include "net/ip/uip-debug.h"
|
||||||
|
|
||||||
#ifndef PERIOD
|
#ifndef PERIOD
|
||||||
|
@ -64,6 +69,9 @@ static uip_ipaddr_t server_ipaddr;
|
||||||
PROCESS(udp_client_process, "UDP client process");
|
PROCESS(udp_client_process, "UDP client process");
|
||||||
AUTOSTART_PROCESSES(&udp_client_process);
|
AUTOSTART_PROCESSES(&udp_client_process);
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
|
static int seq_id;
|
||||||
|
static int reply;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
tcpip_handler(void)
|
tcpip_handler(void)
|
||||||
{
|
{
|
||||||
|
@ -72,16 +80,32 @@ tcpip_handler(void)
|
||||||
if(uip_newdata()) {
|
if(uip_newdata()) {
|
||||||
str = uip_appdata;
|
str = uip_appdata;
|
||||||
str[uip_datalen()] = '\0';
|
str[uip_datalen()] = '\0';
|
||||||
printf("DATA recv '%s'\n", str);
|
reply++;
|
||||||
|
printf("DATA recv '%s' (s:%d, r:%d)\n", str, seq_id, reply);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static void
|
static void
|
||||||
send_packet(void *ptr)
|
send_packet(void *ptr)
|
||||||
{
|
{
|
||||||
static int seq_id;
|
|
||||||
char buf[MAX_PAYLOAD_LEN];
|
char buf[MAX_PAYLOAD_LEN];
|
||||||
|
|
||||||
|
#ifdef SERVER_REPLY
|
||||||
|
uint8_t num_used = 0;
|
||||||
|
uip_ds6_nbr_t *nbr;
|
||||||
|
|
||||||
|
nbr = nbr_table_head(ds6_neighbors);
|
||||||
|
while(nbr != NULL) {
|
||||||
|
nbr = nbr_table_next(ds6_neighbors, nbr);
|
||||||
|
num_used++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(seq_id > 0) {
|
||||||
|
ANNOTATE("#A r=%d/%d,color=%s,n=%d %d\n", reply, seq_id,
|
||||||
|
reply == seq_id ? "GREEN" : "RED", uip_ds6_route_num_routes(), num_used);
|
||||||
|
}
|
||||||
|
#endif /* SERVER_REPLY */
|
||||||
|
|
||||||
seq_id++;
|
seq_id++;
|
||||||
PRINTF("DATA send to %d 'Hello %d'\n",
|
PRINTF("DATA send to %d 'Hello %d'\n",
|
||||||
server_ipaddr.u8[sizeof(server_ipaddr.u8) - 1], seq_id);
|
server_ipaddr.u8[sizeof(server_ipaddr.u8) - 1], seq_id);
|
||||||
|
@ -157,7 +181,8 @@ PROCESS_THREAD(udp_client_process, ev, data)
|
||||||
|
|
||||||
set_global_address();
|
set_global_address();
|
||||||
|
|
||||||
PRINTF("UDP client process started\n");
|
PRINTF("UDP client process started nbr:%d routes:%d\n",
|
||||||
|
NBR_TABLE_CONF_MAX_NEIGHBORS, UIP_CONF_MAX_ROUTES);
|
||||||
|
|
||||||
print_local_addresses();
|
print_local_addresses();
|
||||||
|
|
||||||
|
@ -174,6 +199,11 @@ PROCESS_THREAD(udp_client_process, ev, data)
|
||||||
PRINTF(" local/remote port %u/%u\n",
|
PRINTF(" local/remote port %u/%u\n",
|
||||||
UIP_HTONS(client_conn->lport), UIP_HTONS(client_conn->rport));
|
UIP_HTONS(client_conn->lport), UIP_HTONS(client_conn->rport));
|
||||||
|
|
||||||
|
/* initialize serial line */
|
||||||
|
uart1_set_input(serial_line_input_byte);
|
||||||
|
serial_line_init();
|
||||||
|
|
||||||
|
|
||||||
#if WITH_COMPOWER
|
#if WITH_COMPOWER
|
||||||
powertrace_sniff(POWERTRACE_ON);
|
powertrace_sniff(POWERTRACE_ON);
|
||||||
#endif
|
#endif
|
||||||
|
@ -185,6 +215,40 @@ PROCESS_THREAD(udp_client_process, ev, data)
|
||||||
tcpip_handler();
|
tcpip_handler();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(ev == serial_line_event_message && data != NULL) {
|
||||||
|
char *str;
|
||||||
|
str = data;
|
||||||
|
if(str[0] == 'r') {
|
||||||
|
uip_ds6_route_t *r;
|
||||||
|
uip_ipaddr_t *nexthop;
|
||||||
|
uip_ds6_defrt_t *defrt;
|
||||||
|
uip_ipaddr_t *ipaddr;
|
||||||
|
defrt = NULL;
|
||||||
|
if((ipaddr = uip_ds6_defrt_choose()) != NULL) {
|
||||||
|
defrt = uip_ds6_defrt_lookup(ipaddr);
|
||||||
|
}
|
||||||
|
if(defrt != NULL) {
|
||||||
|
PRINTF("DefRT: :: -> %02d", defrt->ipaddr.u8[15]);
|
||||||
|
PRINTF(" lt:%lu inf:%d\n", stimer_remaining(&defrt->lifetime),
|
||||||
|
defrt->isinfinite);
|
||||||
|
} else {
|
||||||
|
PRINTF("DefRT: :: -> NULL\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
for(r = uip_ds6_route_head();
|
||||||
|
r != NULL;
|
||||||
|
r = uip_ds6_route_next(r)) {
|
||||||
|
nexthop = uip_ds6_route_nexthop(r);
|
||||||
|
PRINTF("Route: %02d -> %02d", r->ipaddr.u8[15], nexthop->u8[15]);
|
||||||
|
/* PRINT6ADDR(&r->ipaddr); */
|
||||||
|
/* PRINTF(" -> "); */
|
||||||
|
/* PRINT6ADDR(nexthop); */
|
||||||
|
PRINTF(" lt:%lu\n", r->state.lifetime);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(etimer_expired(&periodic)) {
|
if(etimer_expired(&periodic)) {
|
||||||
etimer_reset(&periodic);
|
etimer_reset(&periodic);
|
||||||
ctimer_set(&backoff_timer, SEND_TIME, send_packet, NULL);
|
ctimer_set(&backoff_timer, SEND_TIME, send_packet, NULL);
|
||||||
|
|
|
@ -107,7 +107,8 @@ PROCESS_THREAD(udp_server_process, ev, data)
|
||||||
|
|
||||||
SENSORS_ACTIVATE(button_sensor);
|
SENSORS_ACTIVATE(button_sensor);
|
||||||
|
|
||||||
PRINTF("UDP server started\n");
|
PRINTF("UDP server started. nbr:%d routes:%d\n",
|
||||||
|
NBR_TABLE_CONF_MAX_NEIGHBORS, UIP_CONF_MAX_ROUTES);
|
||||||
|
|
||||||
#if UIP_CONF_ROUTER
|
#if UIP_CONF_ROUTER
|
||||||
/* The choice of server address determines its 6LoPAN header compression.
|
/* The choice of server address determines its 6LoPAN header compression.
|
||||||
|
|
Loading…
Add table
Reference in a new issue