Re: [Tinyos-help] how to use the make rule ?

2010-07-26 Thread Michael Schippling
The usual way to add an option to the nescc compile line from your app/Makefile is this: PFLAGS += option so this might work: PFLAGS += TINYSEC=true Although you might need it to be -DTINYSEC=true if it is a #define being set. You should see whatever you put in PFLAGS in the nesc comm

[Tinyos-help] how to use the make rule ?

2010-07-26 Thread Haripriya priya
Hi, In TinySec the , security is enabled through setting "TINYSEC = true" in Makefile of our application program. Then we need to write the actions performed in Avr.rules There we will give our processing... I got a similar example: ifndef TINYSEC TINYSEC := false # default: disable tinyse