explicit make clean before compiling firmwares
This commit is contained in:
parent
5be78ce843
commit
a13b6697df
25 changed files with 482 additions and 454 deletions
|
@ -23,7 +23,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>[CONTIKI_DIR]/examples/rime/example-abc.c</source>
|
||||
<commands>make example-abc.sky TARGET=sky DEFINES=MAC_DRIVER=nullmac_driver</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make example-abc.sky TARGET=sky DEFINES=MAC_DRIVER=nullmac_driver</commands>
|
||||
<firmware>[CONTIKI_DIR]/examples/rime/example-abc.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
@ -44,7 +45,8 @@
|
|||
<identifier>esb1</identifier>
|
||||
<description>ESB Mote Type #1</description>
|
||||
<source>[CONTIKI_DIR]/examples/rime/example-abc.c</source>
|
||||
<commands>make example-abc.esb TARGET=esb DEFINES=MAC_DRIVER=nullmac_driver</commands>
|
||||
<commands>make clean TARGET=esb
|
||||
make example-abc.esb TARGET=esb DEFINES=MAC_DRIVER=nullmac_driver</commands>
|
||||
<firmware>[CONTIKI_DIR]/examples/rime/example-abc.esb</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -23,7 +23,8 @@
|
|||
<identifier>esb1</identifier>
|
||||
<description>ESB Mote Type #esb1</description>
|
||||
<source>[CONTIKI_DIR]/examples/hello-world/hello-world.c</source>
|
||||
<commands>make hello-world.esb TARGET=esb</commands>
|
||||
<commands>make clean TARGET=esb
|
||||
make hello-world.esb TARGET=esb</commands>
|
||||
<firmware>[CONTIKI_DIR]/examples/hello-world/hello-world.esb</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.RimeAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/sky-ip/sky-telnet-server.c</source>
|
||||
<commands>make sky-telnet-server.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make sky-telnet-server.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/sky-ip/sky-telnet-server.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/sky-shell-webserver/sky-shell-webserver.c</source>
|
||||
<commands>make sky-shell-webserver.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make sky-shell-webserver.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/sky-shell-webserver/sky-shell-webserver.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -23,7 +23,8 @@
|
|||
<identifier>micaz1</identifier>
|
||||
<description>MicaZ Mote Type #micaz1</description>
|
||||
<source>../../../examples/hello-world/hello-world.c</source>
|
||||
<commands>make hello-world.elf TARGET=micaz</commands>
|
||||
<commands>make clean TARGET=micaz
|
||||
make hello-world.elf TARGET=micaz</commands>
|
||||
<firmware>../../../examples/hello-world/hello-world.elf</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.avrmote.interfaces.MicaZID</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/multi-threading/multi-threading.c</source>
|
||||
<commands>make multi-threading.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make multi-threading.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/multi-threading/multi-threading.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -1,143 +1,144 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<simconf>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mrm</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mspsim</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/avrora</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/native_gateway</project>
|
||||
<simulation>
|
||||
<title>My simulation</title>
|
||||
<delaytime>0</delaytime>
|
||||
<randomseed>generated</randomseed>
|
||||
<motedelay_us>1000000</motedelay_us>
|
||||
<radiomedium>
|
||||
se.sics.cooja.radiomediums.UDGM
|
||||
<transmitting_range>50.0</transmitting_range>
|
||||
<interference_range>100.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>
|
||||
se.sics.cooja.mspmote.SkyMoteType
|
||||
<identifier>sky1</identifier>
|
||||
<description>netperf shell</description>
|
||||
<source>[CONTIKI_DIR]/examples/netperf/netperf-shell.c</source>
|
||||
<commands>make MAC_DRIVER=cxmac_driver netperf-shell.sky TARGET=sky</commands>
|
||||
<firmware>[CONTIKI_DIR]/examples/netperf/netperf-shell.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.RimeAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.Mote2MoteRelations</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspClock</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspMoteID</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyButton</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyFlash</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyCoffeeFilesystem</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyByteRadio</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkySerial</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyLED</moteinterface>
|
||||
</motetype>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>49.48292285385544</x>
|
||||
<y>97.67000744426045</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>1</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>80.21380569499377</x>
|
||||
<y>98.51039574575084</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>2</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
</simulation>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.SimControl
|
||||
<width>290</width>
|
||||
<z>2</z>
|
||||
<height>172</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>0</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.LogListener
|
||||
<plugin_config>
|
||||
<filter />
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>0</z>
|
||||
<height>377</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>171</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.TimeLine
|
||||
<plugin_config>
|
||||
<mote>0</mote>
|
||||
<mote>1</mote>
|
||||
<showRadioRXTX />
|
||||
<showRadioHW />
|
||||
<showLEDs />
|
||||
<split>118</split>
|
||||
<zoom>9</zoom>
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>1</z>
|
||||
<height>150</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>548</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.ScriptRunner
|
||||
<plugin_config>
|
||||
<script>TIMEOUT(100000);
|
||||
started = 0;
|
||||
while(true) {
|
||||
YIELD(); /* wait for another mote output */
|
||||
log.log(time + " " + id + " " + msg + "\n");
|
||||
if(msg.startsWith("Done")) {
|
||||
log.testOK();
|
||||
}
|
||||
if(msg.startsWith("netperf control connection failed")) {
|
||||
log.testFailed();
|
||||
}
|
||||
if(id == 1 && msg.startsWith("1.0: Contiki") && started == 0) {
|
||||
write(mote, "netperf -bups 2.0 20\n"); /* Write to mote serial port */
|
||||
started = 1;
|
||||
}
|
||||
}
|
||||
//log.testOK(); /* Report test success and quit */
|
||||
//log.testFailed(); /* Report test failure and quit */</script>
|
||||
<active>true</active>
|
||||
</plugin_config>
|
||||
<width>600</width>
|
||||
<z>-1</z>
|
||||
<height>476</height>
|
||||
<location_x>399</location_x>
|
||||
<location_y>154</location_y>
|
||||
<minimized>true</minimized>
|
||||
</plugin>
|
||||
</simconf>
|
||||
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<simconf>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mrm</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mspsim</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/avrora</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/native_gateway</project>
|
||||
<simulation>
|
||||
<title>My simulation</title>
|
||||
<delaytime>0</delaytime>
|
||||
<randomseed>generated</randomseed>
|
||||
<motedelay_us>1000000</motedelay_us>
|
||||
<radiomedium>
|
||||
se.sics.cooja.radiomediums.UDGM
|
||||
<transmitting_range>50.0</transmitting_range>
|
||||
<interference_range>100.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>
|
||||
se.sics.cooja.mspmote.SkyMoteType
|
||||
<identifier>sky1</identifier>
|
||||
<description>netperf shell</description>
|
||||
<source>[CONTIKI_DIR]/examples/netperf/netperf-shell.c</source>
|
||||
<commands>make clean TARGET=sky
|
||||
make MAC_DRIVER=cxmac_driver netperf-shell.sky TARGET=sky</commands>
|
||||
<firmware>[CONTIKI_DIR]/examples/netperf/netperf-shell.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.RimeAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.Mote2MoteRelations</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspClock</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspMoteID</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyButton</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyFlash</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyCoffeeFilesystem</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyByteRadio</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkySerial</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyLED</moteinterface>
|
||||
</motetype>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>49.48292285385544</x>
|
||||
<y>97.67000744426045</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>1</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>80.21380569499377</x>
|
||||
<y>98.51039574575084</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>2</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
</simulation>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.SimControl
|
||||
<width>290</width>
|
||||
<z>2</z>
|
||||
<height>172</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>0</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.LogListener
|
||||
<plugin_config>
|
||||
<filter />
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>0</z>
|
||||
<height>377</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>171</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.TimeLine
|
||||
<plugin_config>
|
||||
<mote>0</mote>
|
||||
<mote>1</mote>
|
||||
<showRadioRXTX />
|
||||
<showRadioHW />
|
||||
<showLEDs />
|
||||
<split>118</split>
|
||||
<zoom>9</zoom>
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>1</z>
|
||||
<height>150</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>548</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.ScriptRunner
|
||||
<plugin_config>
|
||||
<script>TIMEOUT(100000);
|
||||
started = 0;
|
||||
while(true) {
|
||||
YIELD(); /* wait for another mote output */
|
||||
log.log(time + " " + id + " " + msg + "\n");
|
||||
if(msg.startsWith("Done")) {
|
||||
log.testOK();
|
||||
}
|
||||
if(msg.startsWith("netperf control connection failed")) {
|
||||
log.testFailed();
|
||||
}
|
||||
if(id == 1 && msg.startsWith("1.0: Contiki") && started == 0) {
|
||||
write(mote, "netperf -bups 2.0 20\n"); /* Write to mote serial port */
|
||||
started = 1;
|
||||
}
|
||||
}
|
||||
//log.testOK(); /* Report test success and quit */
|
||||
//log.testFailed(); /* Report test failure and quit */</script>
|
||||
<active>true</active>
|
||||
</plugin_config>
|
||||
<width>600</width>
|
||||
<z>-1</z>
|
||||
<height>476</height>
|
||||
<location_x>399</location_x>
|
||||
<location_y>154</location_y>
|
||||
<minimized>true</minimized>
|
||||
</plugin>
|
||||
</simconf>
|
||||
|
||||
|
|
|
@ -1,143 +1,144 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<simconf>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mrm</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mspsim</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/avrora</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/native_gateway</project>
|
||||
<simulation>
|
||||
<title>My simulation</title>
|
||||
<delaytime>0</delaytime>
|
||||
<randomseed>generated</randomseed>
|
||||
<motedelay_us>1000000</motedelay_us>
|
||||
<radiomedium>
|
||||
se.sics.cooja.radiomediums.UDGM
|
||||
<transmitting_range>50.0</transmitting_range>
|
||||
<interference_range>100.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>
|
||||
se.sics.cooja.mspmote.SkyMoteType
|
||||
<identifier>sky1</identifier>
|
||||
<description>netperf shell</description>
|
||||
<source>[CONTIKI_DIR]/examples/netperf/netperf-shell.c</source>
|
||||
<commands>make MAC_DRIVER=lpp_driver netperf-shell.sky TARGET=sky</commands>
|
||||
<firmware>[CONTIKI_DIR]/examples/netperf/netperf-shell.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.RimeAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.Mote2MoteRelations</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspClock</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspMoteID</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyButton</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyFlash</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyCoffeeFilesystem</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyByteRadio</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkySerial</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyLED</moteinterface>
|
||||
</motetype>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>49.48292285385544</x>
|
||||
<y>97.67000744426045</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>1</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>80.21380569499377</x>
|
||||
<y>98.51039574575084</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>2</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
</simulation>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.SimControl
|
||||
<width>290</width>
|
||||
<z>2</z>
|
||||
<height>172</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>0</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.LogListener
|
||||
<plugin_config>
|
||||
<filter />
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>0</z>
|
||||
<height>377</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>171</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.TimeLine
|
||||
<plugin_config>
|
||||
<mote>0</mote>
|
||||
<mote>1</mote>
|
||||
<showRadioRXTX />
|
||||
<showRadioHW />
|
||||
<showLEDs />
|
||||
<split>118</split>
|
||||
<zoom>9</zoom>
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>1</z>
|
||||
<height>150</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>548</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.ScriptRunner
|
||||
<plugin_config>
|
||||
<script>TIMEOUT(100000);
|
||||
started = 0;
|
||||
while(true) {
|
||||
YIELD(); /* wait for another mote output */
|
||||
log.log(time + " " + id + " " + msg + "\n");
|
||||
if(msg.startsWith("Done")) {
|
||||
log.testOK();
|
||||
}
|
||||
if(msg.startsWith("netperf control connection failed")) {
|
||||
log.testFailed();
|
||||
}
|
||||
if(id == 1 && msg.startsWith("1.0: Contiki") && started == 0) {
|
||||
write(mote, "netperf -bups 2.0 20\n"); /* Write to mote serial port */
|
||||
started = 1;
|
||||
}
|
||||
}
|
||||
//log.testOK(); /* Report test success and quit */
|
||||
//log.testFailed(); /* Report test failure and quit */</script>
|
||||
<active>true</active>
|
||||
</plugin_config>
|
||||
<width>600</width>
|
||||
<z>-1</z>
|
||||
<height>476</height>
|
||||
<location_x>399</location_x>
|
||||
<location_y>154</location_y>
|
||||
<minimized>true</minimized>
|
||||
</plugin>
|
||||
</simconf>
|
||||
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<simconf>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mrm</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mspsim</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/avrora</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/native_gateway</project>
|
||||
<simulation>
|
||||
<title>My simulation</title>
|
||||
<delaytime>0</delaytime>
|
||||
<randomseed>generated</randomseed>
|
||||
<motedelay_us>1000000</motedelay_us>
|
||||
<radiomedium>
|
||||
se.sics.cooja.radiomediums.UDGM
|
||||
<transmitting_range>50.0</transmitting_range>
|
||||
<interference_range>100.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>
|
||||
se.sics.cooja.mspmote.SkyMoteType
|
||||
<identifier>sky1</identifier>
|
||||
<description>netperf shell</description>
|
||||
<source>[CONTIKI_DIR]/examples/netperf/netperf-shell.c</source>
|
||||
<commands>make clean TARGET=sky
|
||||
make MAC_DRIVER=lpp_driver netperf-shell.sky TARGET=sky</commands>
|
||||
<firmware>[CONTIKI_DIR]/examples/netperf/netperf-shell.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.RimeAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.Mote2MoteRelations</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspClock</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspMoteID</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyButton</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyFlash</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyCoffeeFilesystem</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyByteRadio</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkySerial</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyLED</moteinterface>
|
||||
</motetype>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>49.48292285385544</x>
|
||||
<y>97.67000744426045</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>1</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>80.21380569499377</x>
|
||||
<y>98.51039574575084</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>2</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
</simulation>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.SimControl
|
||||
<width>290</width>
|
||||
<z>2</z>
|
||||
<height>172</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>0</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.LogListener
|
||||
<plugin_config>
|
||||
<filter />
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>0</z>
|
||||
<height>377</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>171</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.TimeLine
|
||||
<plugin_config>
|
||||
<mote>0</mote>
|
||||
<mote>1</mote>
|
||||
<showRadioRXTX />
|
||||
<showRadioHW />
|
||||
<showLEDs />
|
||||
<split>118</split>
|
||||
<zoom>9</zoom>
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>1</z>
|
||||
<height>150</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>548</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.ScriptRunner
|
||||
<plugin_config>
|
||||
<script>TIMEOUT(100000);
|
||||
started = 0;
|
||||
while(true) {
|
||||
YIELD(); /* wait for another mote output */
|
||||
log.log(time + " " + id + " " + msg + "\n");
|
||||
if(msg.startsWith("Done")) {
|
||||
log.testOK();
|
||||
}
|
||||
if(msg.startsWith("netperf control connection failed")) {
|
||||
log.testFailed();
|
||||
}
|
||||
if(id == 1 && msg.startsWith("1.0: Contiki") && started == 0) {
|
||||
write(mote, "netperf -bups 2.0 20\n"); /* Write to mote serial port */
|
||||
started = 1;
|
||||
}
|
||||
}
|
||||
//log.testOK(); /* Report test success and quit */
|
||||
//log.testFailed(); /* Report test failure and quit */</script>
|
||||
<active>true</active>
|
||||
</plugin_config>
|
||||
<width>600</width>
|
||||
<z>-1</z>
|
||||
<height>476</height>
|
||||
<location_x>399</location_x>
|
||||
<location_y>154</location_y>
|
||||
<minimized>true</minimized>
|
||||
</plugin>
|
||||
</simconf>
|
||||
|
||||
|
|
|
@ -1,143 +1,144 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<simconf>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mrm</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mspsim</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/avrora</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/native_gateway</project>
|
||||
<simulation>
|
||||
<title>My simulation</title>
|
||||
<delaytime>0</delaytime>
|
||||
<randomseed>generated</randomseed>
|
||||
<motedelay_us>1000000</motedelay_us>
|
||||
<radiomedium>
|
||||
se.sics.cooja.radiomediums.UDGM
|
||||
<transmitting_range>50.0</transmitting_range>
|
||||
<interference_range>100.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>
|
||||
se.sics.cooja.mspmote.SkyMoteType
|
||||
<identifier>sky1</identifier>
|
||||
<description>netperf shell</description>
|
||||
<source>[CONTIKI_DIR]/examples/netperf/netperf-shell.c</source>
|
||||
<commands>make netperf-shell.sky TARGET=sky</commands>
|
||||
<firmware>[CONTIKI_DIR]/examples/netperf/netperf-shell.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.RimeAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.Mote2MoteRelations</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspClock</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspMoteID</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyButton</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyFlash</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyCoffeeFilesystem</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyByteRadio</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkySerial</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyLED</moteinterface>
|
||||
</motetype>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>49.48292285385544</x>
|
||||
<y>97.67000744426045</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>1</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>80.21380569499377</x>
|
||||
<y>98.51039574575084</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>2</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
</simulation>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.SimControl
|
||||
<width>290</width>
|
||||
<z>2</z>
|
||||
<height>172</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>0</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.LogListener
|
||||
<plugin_config>
|
||||
<filter />
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>0</z>
|
||||
<height>377</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>171</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.TimeLine
|
||||
<plugin_config>
|
||||
<mote>0</mote>
|
||||
<mote>1</mote>
|
||||
<showRadioRXTX />
|
||||
<showRadioHW />
|
||||
<showLEDs />
|
||||
<split>118</split>
|
||||
<zoom>9</zoom>
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>1</z>
|
||||
<height>150</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>548</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.ScriptRunner
|
||||
<plugin_config>
|
||||
<script>TIMEOUT(100000);
|
||||
started = 0;
|
||||
while(true) {
|
||||
YIELD(); /* wait for another mote output */
|
||||
log.log(time + " " + id + " " + msg + "\n");
|
||||
if(msg.startsWith("Done")) {
|
||||
log.testOK();
|
||||
}
|
||||
if(msg.startsWith("netperf control connection failed")) {
|
||||
log.testFailed();
|
||||
}
|
||||
if(id == 1 && msg.startsWith("1.0: Contiki") && started == 0) {
|
||||
write(mote, "netperf -bups 2.0 20\n"); /* Write to mote serial port */
|
||||
started = 1;
|
||||
}
|
||||
}
|
||||
//log.testOK(); /* Report test success and quit */
|
||||
//log.testFailed(); /* Report test failure and quit */</script>
|
||||
<active>true</active>
|
||||
</plugin_config>
|
||||
<width>600</width>
|
||||
<z>-1</z>
|
||||
<height>476</height>
|
||||
<location_x>399</location_x>
|
||||
<location_y>154</location_y>
|
||||
<minimized>true</minimized>
|
||||
</plugin>
|
||||
</simconf>
|
||||
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<simconf>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mrm</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/mspsim</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/avrora</project>
|
||||
<project>[CONTIKI_DIR]/tools/cooja/apps/native_gateway</project>
|
||||
<simulation>
|
||||
<title>My simulation</title>
|
||||
<delaytime>0</delaytime>
|
||||
<randomseed>generated</randomseed>
|
||||
<motedelay_us>1000000</motedelay_us>
|
||||
<radiomedium>
|
||||
se.sics.cooja.radiomediums.UDGM
|
||||
<transmitting_range>50.0</transmitting_range>
|
||||
<interference_range>100.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>
|
||||
se.sics.cooja.mspmote.SkyMoteType
|
||||
<identifier>sky1</identifier>
|
||||
<description>netperf shell</description>
|
||||
<source>[CONTIKI_DIR]/examples/netperf/netperf-shell.c</source>
|
||||
<commands>make clean TARGET=sky
|
||||
make netperf-shell.sky TARGET=sky</commands>
|
||||
<firmware>[CONTIKI_DIR]/examples/netperf/netperf-shell.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.RimeAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.Mote2MoteRelations</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspClock</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.MspMoteID</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyButton</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyFlash</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyCoffeeFilesystem</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyByteRadio</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkySerial</moteinterface>
|
||||
<moteinterface>se.sics.cooja.mspmote.interfaces.SkyLED</moteinterface>
|
||||
</motetype>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>49.48292285385544</x>
|
||||
<y>97.67000744426045</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>1</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
<mote>
|
||||
se.sics.cooja.mspmote.SkyMote
|
||||
<motetype_identifier>sky1</motetype_identifier>
|
||||
<breakpoints />
|
||||
<interface_config>
|
||||
se.sics.cooja.interfaces.Position
|
||||
<x>80.21380569499377</x>
|
||||
<y>98.51039574575084</y>
|
||||
<z>0.0</z>
|
||||
</interface_config>
|
||||
<interface_config>
|
||||
se.sics.cooja.mspmote.interfaces.MspMoteID
|
||||
<id>2</id>
|
||||
</interface_config>
|
||||
</mote>
|
||||
</simulation>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.SimControl
|
||||
<width>290</width>
|
||||
<z>2</z>
|
||||
<height>172</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>0</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.LogListener
|
||||
<plugin_config>
|
||||
<filter />
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>0</z>
|
||||
<height>377</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>171</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.TimeLine
|
||||
<plugin_config>
|
||||
<mote>0</mote>
|
||||
<mote>1</mote>
|
||||
<showRadioRXTX />
|
||||
<showRadioHW />
|
||||
<showLEDs />
|
||||
<split>118</split>
|
||||
<zoom>9</zoom>
|
||||
</plugin_config>
|
||||
<width>1024</width>
|
||||
<z>1</z>
|
||||
<height>150</height>
|
||||
<location_x>0</location_x>
|
||||
<location_y>548</location_y>
|
||||
<minimized>false</minimized>
|
||||
</plugin>
|
||||
<plugin>
|
||||
se.sics.cooja.plugins.ScriptRunner
|
||||
<plugin_config>
|
||||
<script>TIMEOUT(100000);
|
||||
started = 0;
|
||||
while(true) {
|
||||
YIELD(); /* wait for another mote output */
|
||||
log.log(time + " " + id + " " + msg + "\n");
|
||||
if(msg.startsWith("Done")) {
|
||||
log.testOK();
|
||||
}
|
||||
if(msg.startsWith("netperf control connection failed")) {
|
||||
log.testFailed();
|
||||
}
|
||||
if(id == 1 && msg.startsWith("1.0: Contiki") && started == 0) {
|
||||
write(mote, "netperf -bups 2.0 20\n"); /* Write to mote serial port */
|
||||
started = 1;
|
||||
}
|
||||
}
|
||||
//log.testOK(); /* Report test success and quit */
|
||||
//log.testFailed(); /* Report test failure and quit */</script>
|
||||
<active>true</active>
|
||||
</plugin_config>
|
||||
<width>600</width>
|
||||
<z>-1</z>
|
||||
<height>476</height>
|
||||
<location_x>399</location_x>
|
||||
<location_y>154</location_y>
|
||||
<minimized>true</minimized>
|
||||
</plugin>
|
||||
</simconf>
|
||||
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/rime/example-abc.c</source>
|
||||
<commands>make example-abc.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make example-abc.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/rime/example-abc.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/rime/example-collect.c</source>
|
||||
<commands>make example-collect.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make example-collect.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/rime/example-collect.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/rime/example-runicast.c</source>
|
||||
<commands>make example-runicast.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make example-runicast.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/rime/example-runicast.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/rime/example-trickle.c</source>
|
||||
<commands>make example-trickle.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make example-trickle.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/rime/example-trickle.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/sky-shell/sky-checkpoint.c</source>
|
||||
<commands>make sky-checkpoint.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make sky-checkpoint.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/sky-shell/sky-checkpoint.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/sky/test-coffee.c</source>
|
||||
<commands>make test-coffee.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make test-coffee.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/sky/test-coffee.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/sky/sky-collect.c</source>
|
||||
<commands>make sky-collect.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make sky-collect.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/sky/sky-collect.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/sky/test-deluge.c</source>
|
||||
<commands>make APPS=deluge test-deluge.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make APPS=deluge test-deluge.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/sky/test-deluge.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/hello-world/hello-world.c</source>
|
||||
<commands>make hello-world.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make hello-world.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/hello-world/hello-world.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #server</description>
|
||||
<source>../../../examples/udp-ipv6/udp-server.c</source>
|
||||
<commands>make udp-server.sky TARGET=sky DEFINES=UIP_CONF_ROUTER=1</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make udp-server.sky TARGET=sky DEFINES=UIP_CONF_ROUTER=1</commands>
|
||||
<firmware>../../../examples/udp-ipv6/udp-server.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
@ -39,7 +40,8 @@
|
|||
<identifier>sky2</identifier>
|
||||
<description>Sky Mote Type #client</description>
|
||||
<source>../../../examples/udp-ipv6/udp-client.c</source>
|
||||
<commands>make udp-client.sky TARGET=sky DEFINES=UIP_CONF_ROUTER=1</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make udp-client.sky TARGET=sky DEFINES=UIP_CONF_ROUTER=1</commands>
|
||||
<firmware>../../../examples/udp-ipv6/udp-client.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/udp-sender-ipv6/example-udp-sender.c</source>
|
||||
<commands>make example-udp-sender.sky TARGET=sky DEFINES=WITH_UIP6,UDP_ADDR_A=0xfe80,UDP_ADDR_B=0,UDP_ADDR_C=0,UDP_ADDR_D=0,UDP_ADDR_E=0x0212,UDP_ADDR_F=0x7402,UDP_ADDR_G=0x02,UDP_ADDR_H=0x202</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make example-udp-sender.sky TARGET=sky DEFINES=WITH_UIP6,UDP_ADDR_A=0xfe80,UDP_ADDR_B=0,UDP_ADDR_C=0,UDP_ADDR_D=0,UDP_ADDR_E=0x0212,UDP_ADDR_F=0x7402,UDP_ADDR_G=0x02,UDP_ADDR_H=0x202</commands>
|
||||
<firmware>../../../examples/udp-sender-ipv6/example-udp-sender.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
@ -39,7 +40,8 @@
|
|||
<identifier>sky2</identifier>
|
||||
<description>Sky Mote Type #2</description>
|
||||
<source>../../../examples/udp-receiver-ipv6/example-udp-receiver.c</source>
|
||||
<commands>make example-udp-receiver.sky TARGET=sky DEFINES=WITH_UIP6,UDP_ADDR_A=0xfe80,UDP_ADDR_B=0,UDP_ADDR_C=0,UDP_ADDR_D=0,UDP_ADDR_E=0x0212,UDP_ADDR_F=0x7401,UDP_ADDR_G=0x01,UDP_ADDR_H=0x101</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make example-udp-receiver.sky TARGET=sky DEFINES=WITH_UIP6,UDP_ADDR_A=0xfe80,UDP_ADDR_B=0,UDP_ADDR_C=0,UDP_ADDR_D=0,UDP_ADDR_E=0x0212,UDP_ADDR_F=0x7401,UDP_ADDR_G=0x01,UDP_ADDR_H=0x101</commands>
|
||||
<firmware>../../../examples/udp-receiver-ipv6/example-udp-receiver.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/sky-shell/sky-shell.c</source>
|
||||
<commands>make sky-shell.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make sky-shell.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/sky-shell/sky-shell.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/sky-shell/sky-shell.c</source>
|
||||
<commands>make sky-shell.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make sky-shell.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/sky-shell/sky-shell.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #1</description>
|
||||
<source>../../../examples/sky-shell/sky-shell.c</source>
|
||||
<commands>make sky-shell.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make sky-shell.sky TARGET=sky</commands>
|
||||
<firmware>../../../examples/sky-shell/sky-shell.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -23,7 +23,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #sky1</description>
|
||||
<source>[CONTIKI_DIR]/examples/sky-shell/sky-checkpoint.c</source>
|
||||
<commands>make sky-checkpoint.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make sky-checkpoint.sky TARGET=sky</commands>
|
||||
<firmware>[CONTIKI_DIR]/examples/sky-shell/sky-checkpoint.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
|
@ -23,7 +23,8 @@
|
|||
<identifier>sky1</identifier>
|
||||
<description>Sky Mote Type #sky1</description>
|
||||
<source>[CONTIKI_DIR]/examples/sky-shell/sky-checkpoint.c</source>
|
||||
<commands>make sky-checkpoint.sky TARGET=sky</commands>
|
||||
<commands>make clean TARGET=sky
|
||||
make sky-checkpoint.sky TARGET=sky</commands>
|
||||
<firmware>[CONTIKI_DIR]/examples/sky-shell/sky-checkpoint.sky</firmware>
|
||||
<moteinterface>se.sics.cooja.interfaces.Position</moteinterface>
|
||||
<moteinterface>se.sics.cooja.interfaces.IPAddress</moteinterface>
|
||||
|
|
Loading…
Reference in a new issue