Update of /cvsroot/firebug/fireboard/beta/fireworks/apps/Fireworks
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24805
Added Files:
FireworksC.nc
Log Message:
Initial add of Fireworks Component.
KAR.
--- NEW FILE: FireworksC.nc ---
/*
* Authors: Karthik Dantu
* Graduate Student
* Firebug Project
* Date: 7/20/2005
*
*/
includes Fireworks;
configuration FireworksC {
}
implementation {
components Main
, GenericComm,
, ClockC
, ADCC
, CC1000RadioC
, DelugeC
, FireworksM
, LedsC;
Main.StdControl -> FireworksM.StdControl;
Main.StdControl -> DelugeC;
Main.StdControl -> GenericComm.Control;
Fireworks.SendPingMsg -> GenericComm.SendMsg[AM_PINGMSG];
Fireworks.ReceivePingMsg -> GenericComm.ReceiveMsg[AM_PINGMSG];
Fireworks.SendDataMsg -> GenericComm.SendMsg[AM_DATAMSG];
Fireworks.ReceiveDataRequestMsg -> GenericComm.ReceiveMsg[AM_DATAREQUESTMSG];
Fireworks.CC1000Control -> CC1000RadioC;
Fireworks.Leds -> LedsC;
Fireworks.Clock -> ClockC;
}
|