From ff93ba8e0f5943843938efd63d8fec2dc2494378 Mon Sep 17 00:00:00 2001 From: fros4943 Date: Wed, 25 Nov 2009 16:03:00 +0000 Subject: [PATCH] decreased transmission interval and increased transmission duration of disturber mote, since short packets could still get through with the current settings --- tools/cooja/java/se/sics/cooja/motes/DisturberMoteType.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/cooja/java/se/sics/cooja/motes/DisturberMoteType.java b/tools/cooja/java/se/sics/cooja/motes/DisturberMoteType.java index 7307fe5b3..94fc93a85 100644 --- a/tools/cooja/java/se/sics/cooja/motes/DisturberMoteType.java +++ b/tools/cooja/java/se/sics/cooja/motes/DisturberMoteType.java @@ -89,8 +89,8 @@ public class DisturberMoteType extends AbstractApplicationMoteType { private final RadioPacket radioPacket = new COOJARadioPacket(new byte[] { 0x01, 0x02, 0x03, 0x04, 0x05 }); - private final static long DELAY = 1*Simulation.MILLISECOND; - private final static long DURATION = 1*Simulation.MILLISECOND; + private final static long DELAY = Simulation.MILLISECOND/5; + private final static long DURATION = 10*Simulation.MILLISECOND; public DisturberMote() { super();