Re: [Tinyos-help] Regarding Packet format

2007-08-13 Thread Pablo Gil Montaño
Hi, look in the file tinyos-1.x/tos/types/AM.h - Mensaje original De: Adi Mallikarjuna Reddy V [EMAIL PROTECTED] Para: [EMAIL PROTECTED] CC: tinyos-help@Millennium.Berkeley.EDU Enviado: lunes, 13 de agosto, 2007 12:52:04 Asunto: Re: [Tinyos-help] Regarding Packet format Hi, Is

Re: [Tinyos-help] Is there any complete documentation of nesC?

2007-05-07 Thread Pablo Gil Montaño
This is the best I know of: http://csl.stanford.edu/~pal/pubs/tinyos-programming.pdf - Mensaje original De: Derek FOol [EMAIL PROTECTED] Para: TinyOS Help Mailing List tinyos-help@Millennium.Berkeley.EDU Enviado: lunes, 7 de mayo, 2007 13:57:45 Asunto: [Tinyos-help] Is there any

Re: [Tinyos-help] unicast problem

2007-02-25 Thread Pablo Gil Montaño
Hi Antonio perhaps you are using Moteiv's version of GenericComm or any other version that also has the following peculiarity: pay attention to the implementation of GenericComm that you are actually using and you will probably find that it is actually the same that the one for

Re: [Tinyos-help] Mica2 compilation error

2007-02-19 Thread Pablo Gil Montaño
Hi Pooja, does the file opt/tinyos-1.x/tools/make/Makerules actually exist? Regards, Pablo Gil - Mensaje original De: Pooja bajpai [EMAIL PROTECTED] Para: tinyos-help@Millennium.Berkeley.EDU Enviado: sábado, 17 de febrero, 2007 9:03:04 Asunto: [Tinyos-help] Mica2 compilation error

[Tinyos-help] Changing radio frquency on Mica2

2007-02-16 Thread Pablo Gil Montaño
Hi all, I'm working with 900 Mhz mica2 motes and I want to change Tx frequency while the motes are running. I'm using CC1000Control.TuneManual(), and frequency seems to change. The problem is that, after every change in frequency, SendMsg.sendDone() takes a very long time be fire (20 seconds)

Re: [Tinyos-help] What does SUCCESS refer to?

2007-02-16 Thread Pablo Gil Montaño
Hi, SUCCESS refers to the packet being successfully sent, but it tells you nothing about the reception of the packet. In order to know whether the packet was received or not, you should activate link-level ACKs by using MacControl.enableACK(). Then you will be able to know if an ACK was

Re: [Tinyos-help] TinyOS: MultiHop

2007-01-29 Thread Pablo Gil Montaño
Hi Hamdi, in TOS_MsgPtr pMsg you must provide a pointer to a TOS_Msg field, which is defined in tinyos-1.x/tos/types/AM.h. In order to fill this TOS_Msg you mus previously call to command void* Send.getBuffer[uint8_t id](TOS_MsgPtr msg, uint16_t* length); to get a pointer to the payload and

Re: [Tinyos-help] Deluge 2 and mica2DOT

2007-01-16 Thread Pablo Gil Montaño
packets epidemically on the network (tos/lib/Drip/README for more info). Regards, Pablo Gil - Mensaje original De: colombo [EMAIL PROTECTED] Para: Pablo Gil Montaño [EMAIL PROTECTED] Enviado: lunes, 15 de enero, 2007 22:05:26 Asunto: Re: [Tinyos-help] Deluge 2 and mica2DOT Hi , Thanks

Re: [Tinyos-help] Why Collection does not work?

2007-01-15 Thread Pablo Gil Montaño
Have you tried using components in tos/lib/Route (for mica) or tos/lib/MultiHopLQI for telos? These components allow you to send data from any mote to a sink (node with ID 0) in a multi-hop way. Regards, Pablo Gil - Mensaje original De: Lorenzo Mainardi [EMAIL PROTECTED] Para:

Re: [Tinyos-help] Deluge 2 and mica2DOT

2007-01-15 Thread Pablo Gil Montaño
Hi all, I'm trying just to make deluge 2.0 work on mica2 motes under tinyos-1.x. I have formatted the flash and uploaded DelugeBasic application. The node responds to ping messages sent through Deluge java toolchain, but when I try to inject an image, I always get the following error: Error:

Re: [Tinyos-help] Deluge 2 and mica2DOT

2007-01-15 Thread Pablo Gil Montaño
Dec 2006, titled 'Bugs found in Deluge/TOSBoot'). I just subsituted the entire tinyos-1.x/tos/lib/Deluge folder with revision 1.1.14 in the repositories and now it works. Regards, Pablo Gil - Mensaje original De: Pablo Gil Montaño [EMAIL PROTECTED] Para: colombo [EMAIL PROTECTED

[Tinyos-help] Deluge on TinyOS-2.x

2007-01-09 Thread Pablo Gil Montaño
Hi all, I'm trying to add support for network reprogramming to motes under TinyOS-2.x. I have read that this version of tinyos supports Deluge, but I can't find the Deluge java toolchain in the tinyos-2.x CVS repository. How do you use Deluge under tinyos-2.x? Regards, Pablo Gil

[Tinyos-help] Deluge and mica2

2006-12-28 Thread Pablo Gil Montaño
Hi all, I'm using tinyos-1.x from CVS and I'm trying to install Deluge on mica2 motes. I've followed the instructions in Deluge documentation at [1]. I have formatted the flash and installed DelugeBasic application, but when I try to load DelugeBasic as the application in the Golden Image I

Re: [Tinyos-help] Tree Creation Using Motes

2006-12-19 Thread Pablo Gil Montaño
MultiHopRouter in tinyos-1.x/tos/lib/Route and LQIMultiHopRouter in tinyos-1.x/tos/lib/MultiHopLQI build a collection tree. As far as I know, LQIMultiHopRouter works on tmote motes but not in mica. MultiHopRouters works in mica motes. They both build a tree in which mote programmed with ID=0

Re: [Tinyos-help] Can i use The Trawler application with Micaz motes?

2006-12-14 Thread Pablo Gil Montaño
Have you tried Surge? Trawler and Surge are not the same, but perhaps Surge suits your needs. Anyway, Trawler makes use of some components that are from Moteiv (SP, etc.). Perhaps you could substitute them. For instance, if Trawler uses LQIMultiHopRouter, you could try to use MultiHopRouter

Re: [Tinyos-help] problem with short packet in tmote ...

2006-12-14 Thread Pablo Gil Montaño
Well, I think there is a very little chance that what I'm going to tell you is causing the problem. But since I'm not able to find some reference to it by using google, I'll post it. When you change a struct, you must take care of word alignment. The problem is that compilers for som mote's

Re: [Tinyos-help] I get the error message like this :undefined reference to `main'

2006-12-13 Thread Pablo Gil Montaño
Does it work with other apps? Try SurgeTelos in tinyos-1.x/apps By the way, I see that you include libraries in tinyos-1.x/tos/lib/Route and tinyos-1.x/tos/lib/Queue. You're probably using component MultiHop (and MultiHop uses QueueSend). I think that for Telos you can use LQIMultiHopRouter

[Tinyos-help] GenericComm and GenericCommPromiscuous combine problem

2006-12-12 Thread Pablo Gil Montaño
Hi all. I'm trying to build an application for mica2 under TinyOS-1.x. I'm using Drip and MultiHopRouter (tos/lib/Route) at the same time. I always get the following warnings: nesc1: warning: calls to Receive.receive in CC1000RadioIntM fan out, but there is no combine function specified for

Re: [Tinyos-help] about RSSI

2006-12-12 Thread Pablo Gil Montaño
- Mensaje reenviado De: Pablo Gil Montaño [EMAIL PROTECTED] Para: Stephen Chou [EMAIL PROTECTED] Enviado: martes, 12 de diciembre, 2006 15:49:56 Asunto: Re: [Tinyos-help] about RSSI Why can't you use TOS_MsgPtr-strength? I thought you can read it when you receive a message

Re: [Tinyos-help] I want to use a high language, who can give me some suggestions?

2006-12-05 Thread Pablo Gil Montaño
If you want to write a program to control the sensor network you can use Java. TinyOS includes several Java programs and communication with the motes using Java is very simple. Take a look at [1], a simple example of how to use a Java program to display data coming from the mots on a PC. Java

Rv: [Tinyos-help] where can I find the implementation for interface Send?

2006-11-30 Thread Pablo Gil Montaño
There might be many implementations of one interface. You have to wire to the one that suits your needs. There might be an implementation that performs a multi-hop transmission to a sink, whereas other implementation might just perfom a single-hop transmission... You must find the approriate

Re: [Tinyos-help] Deluge and Flash data logging on telosb

2006-11-30 Thread Pablo Gil Montaño
I once wrote an application that didn't use the flash at all and it wouldn't work with deluge. I just tried the same application without Deluge installed on the motes and it worked allright. I still don't know the reason. - Mensaje original De: Mukundan Sridharan [EMAIL PROTECTED]

Re: [Tinyos-help] Concerning call SendMsg.send()

2006-11-28 Thread Pablo Gil Montaño
Just in case you are using tmote, I think you can make use of SP (it's in nesdoc documentation included in boomerang: moteiv_dir/doc/nesdoc). I know that with SP you can receive messages from UART just as you do from radio, by using interface SPReceive. I haven't tested sending messages though.

[Tinyos-help] Documentation for tmote

2006-11-15 Thread Pablo Gil Montaño
About two months ago I was able to generate documentation for tmote (TinyOS 1.x) by using 'make tmote docs' thanks to the instructions provided by Philip Levis and Joe Polastre. The solution was installing the TinyOS 2.x toolchain (downloading TinyOS-2.x and installing the tools under

[Tinyos-help] Re: How to enable ACK on tmote

2006-11-07 Thread Pablo Gil Montaño
I used SP library from Moteiv, and set transmission to reliable. SP is included in Boomerang (see [1]), but I have tested it just with tmote motes.[1]: http://blog.moteiv.com/archives/boomerang/- Mensaje original De: Lee Ee Foong [EMAIL PROTECTED]Para: [EMAIL PROTECTED]Enviado: sábado, 4

[Tinyos-help] Moteiv and java tools

2006-09-28 Thread Pablo Gil Montaño
Hi everyone.I'm trying to use Moteiv's java tools (Trawler and so on). The problem is that, when I build them (running make in moteiv/tools/java), programs like SerialForwarder stop working, so I have to run SerialForwarder, compile Moteiv's java tools and the run Trawler or any other java

[Tinyos-help] RE: the TOS_MsgPtr var holds what

2006-09-26 Thread Pablo Gil Montaño
I don't understand very well what you mean when you say that "within which the receiveMsg() command is called...", but I think I can perhaps help you a little bit.When you want to receive something you just need to use the interface ReceiveMsg (GenericComm provides this interface, so just wire

[Tinyos-help] RE: regarding the crc

2006-09-26 Thread Pablo Gil Montaño
I think that when you receive a packet through ReceiveMsg or Receive interfaces you don't have to check the CRC, since it has already been checked and you just won't receive the packet if the CRC was incorrect.primalfear 69 [EMAIL PROTECTED] escribió: hello thanku very much..bcaz of ur

[Tinyos-help] Make pc - missing components and interfaces

2006-09-25 Thread Pablo Gil Montaño
Hi.When I try to compile a program with 'make pc' I get several errors, whereas if I type 'make tmote' the program compiles and runs OK. The errors I get are related to missing interfaces and components (e.g.: 'interface LocalTime not found'). I guess that it is because tmote associated Makefiles

Re: [Tinyos-help] Multihop in tmote

2006-09-24 Thread Pablo Gil Montaño
Polastre [EMAIL PROTECTED] escribió: Have you tried using Delta and Trawler?Note that the mote connected to the PC must either be node id 0 ormust communicate with a program on the host that informs the mote thatit is the base station (such as Trawler)-JoeOn 9/22/06, Pablo Gil Montaño <[EMAIL PROTEC

RE: [Tinyos-help] Help in reading Data of Listen and ListenRaw

2006-09-24 Thread Pablo Gil Montaño
I know the format received with Listen, just in case it can help you, I describe the fields in order, and beteween parantheses the number of bytes.Length (1)Frame Control Field (2)Dat sequence number (1)Dest PAN address (2)Dest address (2)Active Message ID (1)Group ID (1)The rest dispayed bu

RE: [Tinyos-help] Can MoteIF receive unknown type message?

2006-09-23 Thread Pablo Gil Montaño
There's a Java application that receives all the messages: net.tinyos.tools.ListenFenghua Yuan [EMAIL PROTECTED] escribió: Hi, Does anybody know whether the java tool(Trawler or Surge) can receive unknown type message? Both of them are using MoteIF to receive and send message, which requires you

Re: [Tinyos-help] How to enable ACK on tmote

2006-09-22 Thread Pablo Gil Montaño
Yes, at the beginning means in StdControl.start()Andy Dalton [EMAIL PROTECTED] escribió: What does "at the beginning" mean? As far as I know, you have to callit *after* StdControl.init() completes (I've typically seen it calledin StdControl.start()).On 9/21/06, Pablo Gil Montaño <[EM

[Tinyos-help] Multihop in tmote

2006-09-22 Thread Pablo Gil Montaño
I'm trying to set up a multip-hop collection tree with tmote motes. I am using component MultiHop (moteiv/tos/lib/MultiHop), but I can't get it to work. The node attached to the USB is constantly sending a packet to the computer, regardless what the other motes are sending. Apart from that, using

[Tinyos-help] How to enable ACK on tmote

2006-09-21 Thread Pablo Gil Montaño
HiI'm trying to enable ack's on tmote. I have wired the components:Main.StdControl - CC2420RadioC;Component.MacControl - CC2420RadioC;I call MacControl.enableAck(); once at the beginning, and the other node receives the message (it's an unicast message), but when sendDone() is signaled, the field

RE: [Tinyos-help] Multihop problem

2006-09-20 Thread Pablo Gil Montaño
I have the same problem, but I still don't know any solution.lamiaimeil [EMAIL PROTECTED] escribió: I'm using Multihop of Tinyos-1.x and I have a problem.Seems that motes don't forward incoming messages tobase station. I see that sender mote broadcastmessages to all motes it can "see" but who

RE: [Tinyos-help] Labview

2006-09-20 Thread Pablo Gil Montaño
So your problem is using serial ports in Labview. Try this [1]. If the link doesn't work enter the official labview web page and search for 'Serial Communication - Basic 2 Port Serial Write and

[Tinyos-help] Re: regarding the TosMsgptr and TosMsg

2006-09-18 Thread Pablo Gil Montaño
the same packet over the other radio and view this packet in the hyperterminal by means of uart ,.how can i do that. another doubt is that, i want one radio to transmit the next packet to the other radio only after it receives an interrupt from the other radio......

Re: [Tinyos-help] Watchdog for tmote

2006-09-18 Thread Pablo Gil Montaño
sed as the watchdog?On Mon, 18 Sep 2006, [iso-8859-1] Pablo Gil Montaño wrote: Hello. I want to use a watchdog timer in tmotes nodes to reset the motes if something goes wrong. I have been browsing through WDTC and WatchdogC, but they seem to be written for other platforms. Is there any implementat

Re: [Tinyos-help] Unicast radio transmission

2006-09-15 Thread Pablo Gil Montaño
Harri *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *Pablo Gil Montaño *Sent:* Thursday, September 14, 2006 2:54 PM *To:* tinyos-help_list *Subject:* [Tinyos-help] Unicast radio transmission Hi. I'm trying to send a packet throught SendMsg to a specifi

[Tinyos-help] Unicast radio transmission

2006-09-14 Thread Pablo Gil Montaño
Hi.I'm trying to send a packet throught SendMsg to a specific node. Scanning the sent packets with TOSBase I can see that the first argument passed to SendMsg.send() is set as the PAN address, and the field TOS_Msg.addr has no effect either on the PAN address or the destination address. Thus, I

RE: [Tinyos-help] How to know the tinyos version

2006-09-14 Thread Pablo Gil Montaño
I don't know how to know the tinyos version, but in tinyos-1.x/ChangeLog, the most recent entry I have is 2004-10-02.walid hamdi [EMAIL PROTECTED] escribió: I have got tinyos 1-x but still have no idea whichone..I have downloaded the version using CVS, so thecommando rpm -qa doesn´t work..Could

RE: [Tinyos-help] Unicast radio transmission

2006-09-14 Thread Pablo Gil Montaño
Sorry, perhaps I didn't explain myself correctly.The nodes that are sending the packets are not running TOSBase, but with a node running TOSBase I can see that the address field of the packet (PAN+address) is 0x 0x0001 (when I try to send a packet to node 1). I don't know if the field order is

RE: [Tinyos-help] help, strange automatic fired timer!!

2006-09-13 Thread Pablo Gil Montaño
Please, correct me if this is nonsense, but try with unique("Timer") instead of unique("MSPSensing"). campbell gao [EMAIL PROTECTED] escribió: hi all, i encounter a strange problem: the time auto to fire without any "call timer.fire();". In my configuration Sensing.nc,3 timersare configured like

RE: [Tinyos-help] Doubt about Wiring Nucleus

2006-09-13 Thread Pablo Gil Montaño
In order to retrieve routing data I think you can use the interface RouteControl. It is provided by the configuration LQIMultiHopRouter (tinyos-1.x/tos/lib/MultiHopLQI/LQIMultiHopRouter.nc), so you'd just have to wire and use it from the component in which you want to have that information

RE: [Tinyos-help] What´s wrong with Makerule in tools/make?

2006-09-13 Thread Pablo Gil Montaño
I'm not working with mica motes, so I don't know the exact procedure to build a micaz application, but if I type make micaz in a terminal window I get the same error. Looks like micaz is no one of the possible platforms, perhaps it's compatible with mica, mica2 or mica2dot and you have to build

Re: [Tinyos-help] help, strange automatic fired timer!!

2006-09-13 Thread Pablo Gil Montaño
I think that it's exactly the other way around. You have to use the same string in very instance so that the compiler knows that they must have different numeric values. At least, that's what I understand from the documentation [1].[1]:

[Tinyos-help] RE: what should i do if i want to see my dbg statements on screen while debugging..........?

2006-09-12 Thread Pablo Gil Montaño
I don't know if this is what you mean, but if you have this in your code:dbg(DBG_USR3,"Message to show on terminal");in order to see the message you should execute your program this way:DBG=usr3 build/pc/main.exe -l=1.0 1(-l=1.0 1 are options that you can change)primalfear 69 [EMAIL PROTECTED]

RE: [Tinyos-help] Problem starting SerialForwarder and other java tools

2006-09-12 Thread Pablo Gil Montaño
Have you compiled the Listen application?Look into the Listen application directory and see if you have only .java files or .java and .class files. If you only have .java files you need to compile the java tools. There must be some Makefile under tinyos-1.x/tools/java/net to compile all the java

RE: [Tinyos-help] sync and async event

2006-09-12 Thread Pablo Gil Montaño
As far as I know, tasks do not preempt other tasks, but events can always preempt tasks or events no matter whether they are async or not. Tasks are executed only when there is nothing else to do, and can be preempted by events, but not by other tasks.If someone knows exactly the difference

[Tinyos-help] LocalTime and PC

2006-09-12 Thread Pablo Gil Montaño
Hi.I want to compile a program for PC (in order to debug it). The program compiles for tmote without any problem, but it won't compile for PC beacuse of the interface LocalTime (looks like it is not implemented for the PC platform). Is there any way of circumventing this problem?Thanks in advance

Re: [Tinyos-help] how to use the nesC compiler

2006-09-08 Thread Pablo Gil Montaño
g this Regards Primalfear On 9/7/06, Pablo Gil Montaño [EMAIL PROTECTED] wrote: The thing you are downloading is the source code of the nesc compiler. You first need to compile the compiler, so as to say. In order to do that, you should read the file INSTALL, included in that file (tar.gz

Re: [Tinyos-help] how to use the nesC compiler

2006-09-08 Thread Pablo Gil Montaño
guide. could you get me any help regarding thisRegards Primalfear On 9/7/06, Pablo Gil Montaño [EMAIL PROTECTED] wrote: The thing you are downloading is the source code of the nesc compiler. You first need to compile the compiler, so as to say. In order to do that, you should r

[Tinyos-help] Wiring timers

2006-09-08 Thread Pablo Gil Montaño
Hi,I'm wrinting a module in which I have to launch several timers. Is there some way of wiring several Timer interfaces in a more or less automated way (some parameter or something), or do I have to manually wire all the timers I'm going to use to TimerC.Timer[unique("Timer")]?Thanks in advance

Re: [Tinyos-help] how to use the nesC compiler

2006-09-08 Thread Pablo Gil Montaño
what should i do... can i do so? Regards On 9/8/06, Pablo Gil Montaño [EMAIL PROTECTED] wrote: Ahother thing:perhaps you already installed the software from xbow and you don't know exactly how to compile an application. Try opening cygwin, look for a directory called apps/Blink (it should

RE: [Tinyos-help] about Deluge

2006-09-08 Thread Pablo Gil Montaño
I followed step by step the Quickstart guide (page 3) on tinyos-1.x/doc/deluge-manual.pdf and I have no problem programming all the motes via radio. The only thing is that some programs I have written don't work if they are wired to DelugeC, so I've stopped using it, but when Deluge works, it

RE: [Tinyos-help] how to get the tinyviz from cygwin

2006-09-08 Thread Pablo Gil Montaño
Once you've built the application for pc, try with:export DBG=usr3build/pc/main.exe –gui 4then, open a second cygwin window and execute:java net.tinyos.sim.TinyVizFor more information, type:build/pc/main.exe –hThe export DBG=... tells the TinyOS simulator which debugging messages should be

Re: [Tinyos-help] Documentation for tmote

2006-09-07 Thread Pablo Gil Montaño
Thanks a lot to both of you.I installed the tools in tinyos-2.x/tools and now I can build the documentation. The rest seems to be working just as it did before.Joe Polastre [EMAIL PROTECTED] escribió: Phil, No, you only need to install the 2.x "tools", which really are nesCtools more than

RE: [Tinyos-help] how to use the nesC compiler

2006-09-07 Thread Pablo Gil Montaño
The thing you are downloading is the source code of the nesc compiler. You first need to compile the compiler, so as to say. In order to do that, you should read the file INSTALL, included in that file (tar.gz is a compressed file, you can decompress it with 7zip [1]). You must know that in order

Re: [Tinyos-help] Documentation for tmote

2006-09-06 Thread Pablo Gil Montaño
get the 'generic components' error described previously. I'm working under linux (ubuntu 6.06) and installed the software for the tmotes following the guide in [1].[1]: http://www.chadmetcalf.com/tinyos-1x-on-ubuntu/Philip Levis [EMAIL PROTECTED] escribió: On Sep 5, 2006, at 7:26 AM, Pablo Gil

Re: [Tinyos-help] Documentation for tmote

2006-09-06 Thread Pablo Gil Montaño
PROTECTED] escribió: Try installing Boomerang 2.0.4. It includes all the necessary toolsand configuration for nesdoc to work correctly.-JoeOn 9/5/06, Pablo Gil Montaño <[EMAIL PROTECTED]> wrote: Hi, I have a problem with nesdoc: everytime I try to generate documentation with 'make tmote docs'

RE: [Tinyos-help] TOSComm vs RXTX in Linux?

2006-09-06 Thread Pablo Gil Montaño
Perhaps these installation guides will help you. I've followed [2] and everything seems to work ok except for the documentation generation. I have Ubuntu 6.06 and I had to change the link /usr/bin/java to the sun executable instead of the one included with ubuntu, but apart form that, I followed

RE: [Tinyos-help] why do i get this warning... no new line at end of file

2006-09-06 Thread Pablo Gil Montaño
just place the cursor at the end of the file in any editor, insert a new line by pressing enter, save the file and end of the warning.primalfear 69 [EMAIL PROTECTED] escribió: hello everybody In many of my programs when i compile there is warning stating xyz.nc:9:2: warning: no new line at end

Re: [Tinyos-help] Documentation for tmote

2006-09-06 Thread Pablo Gil Montaño
problem. In linux, however, I cannot build documentation for tmote (although I can do it for the other platforms in those applications that do not depend on moteiv-specific components).Joe Polastre [EMAIL PROTECTED] escribió: [1] uses nesC 1.2.4. Upgrade to 1.2.7.-JoeOn 9/6/06, Pablo Gil Montaño

RE: [Tinyos-help] power management with a telosb

2006-09-06 Thread Pablo Gil Montaño
I'm not sure, but I think that TinyOS automatically puts the CPU into sleep when there are no tasks to be done by the CPU.harun [EMAIL PROTECTED] escribió: Hello, I´m trying to put a telosb mote into the CPU sleep mode in order to power save. How can I do this ? Are there any

[Tinyos-help] Documentation for tmote

2006-09-05 Thread Pablo Gil Montaño
Hi,I have a problem with nesdoc: everytime I try to generate documentation with 'make tmote docs' I get the following error:nesc1: documentation system does not yet support generic components and interfacesmake: *** [mot_docs_] Error 1It happens with programs included in tinyos-1.x/apps that work