I am trying to test the TinyAODV version in /opt/tinyos-1.x/contrib/hsn folder on micaZ. I can't send a message using the Send interface provided by AODV.nc. Has anyone successfully compiled and tested TinyAODV on MicaZ or is it only work in mica? I have included my wiring configuration for my application below. Please correct me, if I misconfigure. Thanks.
includes WSN;
includes WSN_Messages;
includes WSN_Settings;
includes AODV;
configuration MyApp
{
}
implementation
{
components Main, MyAppM, AODV, AODV_Core, AODV_PacketForwarder, SingleHopManager, TimerC, LedsC;
Main.StdControl -> MyAppM.StdControl;
Main.StdControl -> TimerC.StdControl;
MyAppM.Leds -> LedsC;
MyAppM.PTimer -> TimerC.Timer[unique("Timer")];
MyAppM.Send -> AODV.Send[100];
MyAppM.Receive -> AODV.Receive[100];
MyAppM.RouteLookup -> AODV_Core;
}
*** I compiled with "make SINK_NODE=1 micaz install.0" for basestation, and "make micaz install.1" for sender.
_______________________________________________ Tinyos-help mailing list [email protected] https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
