increased inter-rucb-transfer delay to avoid problems in lossy networks

This commit is contained in:
Fredrik Osterlind 2012-05-29 14:56:39 +02:00
parent b27c92af12
commit 516e3e9b16

View File

@ -130,7 +130,8 @@
<plugin> <plugin>
se.sics.cooja.plugins.ScriptRunner se.sics.cooja.plugins.ScriptRunner
<plugin_config> <plugin_config>
<script>TIMEOUT(250000, log.log("last msg: " + msg + "\n")); <script>TIMEOUT(350000, log.log("last msg: " + msg + "\n"));
DELAY = 10000;
/* Wait for nodes to boot */ /* Wait for nodes to boot */
GENERATE_MSG(5000, "continue"); GENERATE_MSG(5000, "continue");
@ -181,7 +182,7 @@ while (fileID &lt; 30) {
/* Delay */ /* Delay */
GENERATE_MSG(5000, "continue"); GENERATE_MSG(DELAY, "continue");
YIELD_THEN_WAIT_UNTIL(msg.equals("continue")); YIELD_THEN_WAIT_UNTIL(msg.equals("continue"));
@ -218,7 +219,7 @@ while (fileID &lt; 30) {
/* Delay */ /* Delay */
GENERATE_MSG(5000, "continue"); GENERATE_MSG(DELAY, "continue");
YIELD_THEN_WAIT_UNTIL(msg.equals("continue")); YIELD_THEN_WAIT_UNTIL(msg.equals("continue"));
} }