Hi Scott, As Eric mentioned you don't have HelloWorldC.nc attached, so it's difficult to tell what exactly is going wrong.
As a sanity check i tried running the HelloWorld app as in the manual (copied and pasted, so it's word for word). I did find two typos, but both are easily fixed. In HelloWorldC.nc, line 14 is: > boot ready; > but it should be: > bool ready; > And in the Makefile the first line is: > COMPONENT=TestBluetoothAppC > but it shoudl be: > COMPONENT=HelloWorldAppC (I see you've fixed this second error in your attached Makefile). >From a quick glance at the errors you are getting I see that you have misspelled "Bluetooth" as "Blueooth" and you are trying to call the sendData() task as sendata() (remember that C is case sensitive). Fix those two errors, and any other typos, and then it should work for you. Mike On Wed, Sep 19, 2012 at 9:09 PM, scott coleman <[email protected]>wrote: > I'm new to Shimmer (and Linux).I'm trying to compile and run the > HelloWorld app and am getting the following errors: > > In component `HelloWorldC': > HelloWorldC.nc: In function `sendData.runTask': > HelloWorldC.nc:28: `Blueooth' undeclared (first use in this function) > HelloWorldC.nc:28: (Each undeclared identifier is reported only once > HelloWorldC.nc:28: for each function it appears in.) > HelloWorldC.nc: In function `Timer.fired': > HelloWorldC.nc:33: implicit declaration of function `senddata' > HelloWorldC.nc:33: only tasks can be posted > HelloWorldC.nc: In function `Bluetooth.connectionMade': > HelloWorldC.nc:37: interface has no command or event named `led2on' > HelloWorldC.nc: In function `Bluetooth.connectionClosed': > HelloWorldC.nc:44: interface has no command or event named `led2off' > HelloWorldC.nc: At top level: > HelloWorldC.nc:47: `DataAvailable' is not in interface `Bluetooth' > HelloWorldC.nc:17: `Bluetooth.dataAvailable' not implemented > make: *** [exe0] Error 1 > > I'm at a loss on how to proceed > BTW I'm using the compressex linux image running in VMWare player from the > live dist disk. > My files are attached > > > _______________________________________________ > Shimmer-users mailing list > [email protected] > https://lists.eecs.harvard.edu/mailman/listinfo/shimmer-users > >
_______________________________________________ Shimmer-users mailing list [email protected] https://lists.eecs.harvard.edu/mailman/listinfo/shimmer-users
