Update of /cvsroot/firebug/fireboard/beta/fireworks/apps/TestLink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29523
Added Files:
TestLinkC.nc
Log Message:
Added TestLinkC configuration file
--- NEW FILE: TestLinkC.nc ---
includes LinkMsg;
configuration TestLinkC {
}
implementation {
components
Main,
GenericComm,
DelugeC,
CC2420RadioC,
TestLinkM,
LedsC;
Main.StdControl -> TestLinkM.StdControl;
Main.StdControl -> GenericComm.StdControl;
Main.StdControl -> DelugeC;
Main.StdControl -> TimerC;
TestLinkM.CommControl -> GenericComm;
TestLinkM.CommControl -> GenericComm;
TestLinkM.SendLinkMsg -> GenericComm.SendMsg[AM_LINKMSG];
TestLinkM.ReceiveLinkMsg -> GenericComm.ReceiveMsg[AM_LINKMSG];
TestLinkM.CC1000Control -> CC1000RadioC;
TestLinkM.Leds -> LedsC;
TestLinkM.Timer -> TimerC.Timer[unique("Timer")];
}
|