Hi everyone!

I am using MIB520 with IRIS motes. I wanted to implement the Tymo  
multi-hop routing protocol. Therefore I wanted to test with TestTymo  
in apps/tests/ with renamed volumes-at45db.xml. Compiling and  
installing works fine. But there are no messages send between my motes  
(leds do not blink). That is why I started to debug with the leds and  
modified the TestM.nc as follows:

   event void Boot.booted(){
     call Leds.led2On(); //Modification
     call SplitControl.start();
   }

   event void SplitControl.startDone(error_t e){
     if(call MHPacket.address() == ORIGIN){
        call Leds.led1On(); //Modification
       call Timer.startPeriodic(2048);
     } else { //Modification
        call Leds.led0On(); //Modification
     }
   }

After installing it on the mote only led2 is lighted. For this reason  
I think that something went wrong after booting.
Does someone knows what I'm doing wrong?

Any help would be greatly appreciated. Thanks!



_______________________________________________
Tinyos-help mailing list
[email protected]
https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Reply via email to