Update of /cvsroot/firebug/fireboard/beta/fireworks/apps/Fireworks
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24670
Modified Files:
Fireworks.h Fireworks.nc
Added Files:
Makefile
Log Message:
Initial add of Makefile
KAR.
Index: Fireworks.h
===================================================================
RCS file: /cvsroot/firebug/fireboard/beta/fireworks/apps/Fireworks/Fireworks.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Fireworks.h 21 Jul 2005 02:30:43 -0000 1.1
--- Fireworks.h 21 Jul 2005 03:08:27 -0000 1.2
***************
*** 11,15 ****
AM_DATAMSG = 43,
AM_DATAREQUESTMSG = 44
! }
struct DataRequestMsg {
--- 11,15 ----
AM_DATAMSG = 43,
AM_DATAREQUESTMSG = 44
! };
struct DataRequestMsg {
***************
*** 19,23 ****
uint16_t numPowerLevels;
uint16_t trialFrequency;
! }
typedef struct DataRequestMsg DataRequestMsg;
--- 19,23 ----
uint16_t numPowerLevels;
uint16_t trialFrequency;
! } ;
typedef struct DataRequestMsg DataRequestMsg;
***************
*** 29,33 ****
uint16_t numPowerLevels;
uint16_t trialFrequency;
! }
typedef struct DataMsg DataMsg;
--- 29,33 ----
uint16_t numPowerLevels;
uint16_t trialFrequency;
! } ;
typedef struct DataMsg DataMsg;
--- NEW FILE: Makefile ---
CWD = $(shell pwd)
COMPONENT=FireworksC
SENSORBOARD=micasb
PFLAGS+=-DDELUGE_LEDS
PFLAGS +=-I$(CWD)
PLATFORMS=mica2
FIREBOARDROOT=/home/kar/firebug/fireboard
include $(TOSROOT)/tools/make/Makerules
Index: Fireworks.nc
===================================================================
RCS file: /cvsroot/firebug/fireboard/beta/fireworks/apps/Fireworks/Fireworks.nc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Fireworks.nc 21 Jul 2005 02:30:44 -0000 1.1
--- Fireworks.nc 21 Jul 2005 03:08:27 -0000 1.2
***************
*** 7,13 ****
*/
! includes Fireworks.h;
! configuration Fireworks {
components Main
, GenericComm,
--- 7,15 ----
*/
! includes Fireworks;
! configuration FireworksC {
! }
! implementation {
components Main
, GenericComm,
|