decreased transmission interval and increased transmission duration of disturber mote, since short packets could still get through with the current settings

This commit is contained in:
fros4943 2009-11-25 16:03:00 +00:00
parent d77d7ab667
commit ff93ba8e0f

View file

@ -89,8 +89,8 @@ public class DisturberMoteType extends AbstractApplicationMoteType {
private final RadioPacket radioPacket = new COOJARadioPacket(new byte[] { private final RadioPacket radioPacket = new COOJARadioPacket(new byte[] {
0x01, 0x02, 0x03, 0x04, 0x05 0x01, 0x02, 0x03, 0x04, 0x05
}); });
private final static long DELAY = 1*Simulation.MILLISECOND; private final static long DELAY = Simulation.MILLISECOND/5;
private final static long DURATION = 1*Simulation.MILLISECOND; private final static long DURATION = 10*Simulation.MILLISECOND;
public DisturberMote() { public DisturberMote() {
super(); super();