[Tinyos-help] help_running_PyTOS_in_TinyOS-2.x

2009-03-15 Thread antonio gonga
Hej all, I'd like some help about running PytOS in TinyOS-2.x. If there is anyone who have done it before, please your suggestions are welcome. Thanks in advance _ Drag n’ drop—Get easy photo sharing with Windows Live™

[Tinyos-help] IPV6 listener problem ./bootstrap does not work

2008-09-04 Thread antonio gonga
Hey all, I tried to compile the listener in order to generate the libmote.a, but what i get is: ./bootstrap: line 2: aclocal: command not found ./bootstrap: line 3: autoheader: command not found ./bootstrap: line 4: autoconf: command not found ./bootstrap: line 5: automake: command not found

[Tinyos-help] Running IPV6 on Motes: Libmote.a not found

2008-09-03 Thread antonio gonga
Hey all, I was trying to run Ipv6 no TelosB, but when compiling the serial_tun it does not find the library libmote.a any help is welcome thanks in advance _ Discover the new Windows Vista

[Tinyos-help] Mote Compile/installation on Windows does not work

2008-09-01 Thread antonio gonga
Hej All, finally I managed to set up TinyOS-2.1 on Windows, but the problem still. Whenever I program a mote with an application, it does not work. I'm also running TinyOS-2.0.2 on a Virtual Machine and this works perfectly. I also was setting up The Eclipse Plugin for Windows, it works

[Tinyos-help] Eclipse Tinyos compilation error

2008-08-31 Thread antonio gonga
Hej All, I was trying installing the YETI 2 plugin and tried to compile and install an application into a mote, but I was not succeeded Bellow is my trace. Another strange thins is that the Architecture environment variables are does not point to what is specified in the guide... Thanks in

[Tinyos-help] TinyOS2.x installation on Windows..

2008-08-31 Thread antonio gonga
Hej All, I want to Install TinyOS-2.x on Windows, but when I'm trying to install the RPMs, I'm always getting the message: $ rpm -ivh --ignoreos msp430tools-base-0.1-20050607.cygwin.i386.rpm error: Failed dependencies:/bin/sh is needed by msp430tools-base-0.1-20050607 I don't have a

[Tinyos-help] C function in a nesC Application

2008-04-29 Thread antonio gonga
Dear all, I'm having so many problems to embed a C code in a nesC Application. File: utime.h unsigned long getTime(); -- File: utime.c #includestdlib.h #includesys/time.h struct timeval tm; unsigned long getTime(){ gettimeofday(tm, NULL); return tm.tv_usec; }

[Tinyos-help] Embedding C code in nesC application

2008-04-28 Thread antonio gonga
Dear All, Could u send me an example of a nesC app that uses an embedded C code? I tried alot to embed a C code but it does not compile.. Thanks in Advance. _ Invite your mail contacts to join your friends list with Windows Live

[Tinyos-help] Struct_Timeval_Unix_in_Tinyos

2008-04-22 Thread antonio gonga
Hey all, I would like to use a more precise timer, I was trying to make a C function and to embed it in a nesC code, but the problem is that it Tinyos does not reconize the include #includesys/time.h. I needed it because I'd like to use the struct timeval to get time precision in micro

[Tinyos-help] malloc in NesC

2008-04-15 Thread antonio gonga
hey all, Is it possible to use malloc for dynamic memory allocation? _ Invite your mail contacts to join your friends list with Windows Live Spaces. It's easy!

[Tinyos-help] Strange error while compiling an Application

2008-04-10 Thread antonio gonga
Hey All, I was creating a Module that provides some useful interfaces that I'll need in my App. When I tried to compile the APP I got the following error: [EMAIL PROTECTED]:~/Projects/MTHESIS/Paper/SBase$ make tmote mkdir -p build/telosb compiling BSNCapC to a telosb binary ncc -o

[Tinyos-help] Writig to the serial Port

2008-04-10 Thread antonio gonga
Hey all, I'm trying to create a Packet analyzer in nesc/tinyos like Whireshark. I started by modifying the BaseStation. My first approach was to resize the messages at the BS so that a timestamp and other relevant packet header fields could be inserted into the payload. This allows the Java

[Tinyos-help] Including/embedding C code in a nesC application

2008-04-09 Thread antonio gonga
Hey all, I want to use a precise timer so that I would like to use the Unix struct timeval to get the time in microseconds The small code bellow gets the time in microseconds #include stdlib.h #include sys/time.h struct timeval tv; unsigned long getTime(){ gettimeofday(tv, NULL) return

[Tinyos-help] Writing to the serial port

2008-04-08 Thread antonio gonga
Hey all, I'm trying to create a Packet analyzer in nesc/tinyos like Whireshark. I started by modifying the BaseStation. My first approach was to resize the messages at the BS so that a timestamp and other relevant packet header fields could be inserted into the payload. This allows the Java

[Tinyos-help] TOSH_DATA_LENGTH

2008-03-26 Thread antonio gonga
Hey All, I've a question. Why TOSH_DATA_LENGTH is set to 28 in Tinyos-2.x? I know that in the previous version was 29. Why not 30, 45, etc?? Is there an article explaining why did they choose this value?. Thanks in advance. _

[Tinyos-help] CC2420Packet Interface

2008-03-24 Thread antonio gonga
Hey all, I've a question that I'd like you to answer me. Let's start by a small protocol/schema. Ar . SB . Cr ..Base Given the situation, imagine that sensor SB wants to relay some information to the Base, but this info should be sent just using Ar or Cr.

[Tinyos-help] Resizing message_t MTU problem

2008-02-20 Thread antonio gonga
Dear all, I've been trying to increase the performance of my modified BaseStation, but I'm now unable to do more. Problem: Sensors send messages to BaseStation, which receives these messages containing different sizes. At the BaseStation, each message is time stamped(Arrival Time), and forwarded

[Tinyos-help] Reading from 3 adc ports

2008-02-19 Thread antonio gonga
Hey all, How can I access more than tree ADC ports at the same time. Lets say ADC0, ADC1, ADC2, ADC4. I want to read the accelerometer X, Y, Z and the ECG at the same time and sent the data to the Sink Node. Thanks in advance. -Antonio

[Tinyos-help] Error while Programming Imperial BSN Node V2.0

2008-02-13 Thread antonio gonga
Hey all, I'm having an strange error while programming an Imperial BSN Node V2.0( BSN - Stands for Body Sensor Network). I know that there are some Applications running on these sensors(TinyOS-1.x) , but I'm trying to upload a TinyOS-2.x application, once they use TinyOS. Error output: mkdir

[Tinyos-help] Error while Programming Imperial BSN Node V2.0

2008-02-13 Thread antonio gonga
Hey all, When I try to install the application to the BSN node, It seems to install everything but suddenly I get An error occurred: Timeout BSN stands for Body Sensor Networks, and the version that I'm using it's from Imperial College of London) I need your help.

[Tinyos-help] ADC_MSP430_how

2008-02-06 Thread antonio gonga
Dear all, I'm starting now with ADC in TinyOS-2.x. I was browsing TinyOS folders and I still have problems. How can I read external sensors connected to my Mote in TinyOS-2.x?. How can I use msp430adc12_channel_config_t if I want to read data from example ADC0, ADC1, ADC2? The example that

[Tinyos-help] ADC_MSP430_how

2008-02-06 Thread antonio gonga
Dear all, I'm starting now with ADC in TinyOS-2.x. I was browsing TinyOS folders and I still have problems. How can I read external sensors connected to my Mote in TinyOS-2.x?. How can I use msp430adc12_channel_config_t if I want to read data from example ADC0, ADC1, ADC2? The example

RE: [Tinyos-help] Increase of Tmote sky Tos_Msg size

2008-01-29 Thread antonio gonga
You can use your own message size. The trick that I used is to resize the message at compilation Time. There's a TEP describing it, what you just have to do, is to add this parameter in the makefile. CFLAGS += DTOSH_DATA_LENGTH= X, where X is the new size of the payload you desire

[Tinyos-help] Xubuntos/VMWare Server 1.04 not resuming

2008-01-28 Thread antonio gonga
Hey all, I have a very big problem that I'm unable to solve. I was nicely working on Virtual Machine, and I decided to have a break, and then I suspended the virtual machine. When I tried to resume it, I got 4 exceptions and from then I'm unable to access Xubuntos again. When I press

[Tinyos-help] Timer.getNow()

2008-01-13 Thread antonio gonga
Hey all, Sender BaseStationPC The sender sends a message, The BaseStation timestamps the message by setting the arrival time to the message. My problem is regarding to the Interface Timer. I found that there's a command called Timer.getNow() which returns the

[Tinyos-help] TinyOS-2.x Instalation problem

2008-01-03 Thread antonio gonga
Hey all, I installed TinyOS-2.x in Windows, whenever I try to Install the package: tinyos-tools-1.2.4-2.cygwin.i386.rpm I get the following Warning/error msp430-gcc.exe- Entry Point Not Found(The procedure entry __getreent culdnot be located in the dynamic link library cygwin1.dll).

[Tinyos-help] TinyOS-2.x post-Install and Configuration

2008-01-02 Thread antonio gonga
Hey All, I was upgrading TinyOS-1.x to TinyOS-2.x in Windows. But I did not understand how to configure the environment, so I changed the file under /etc/profile.d/tinyos.sh with the new TinyOs-2.x environment variables. My problem is that when I tried to compile the Blink App i got the

[Tinyos-help] Collection/CTP

2007-12-28 Thread antonio gonga
hey all, I'm new to TinyOS-2.x and I'm trying to get used to the new syntax and network protocols. Is there any application that uses CTP(Collection Tree Protocol) like Surge(MultiHopRouter) in TinyOS-1.x?? I need an example just to compare how it looks like. Thanks in advance.

[Tinyos-help] MicaZ_XubunTOS2.0

2007-12-18 Thread antonio gonga
heyl all, I'm unable to install an application to a MicaZ mote. Whenever I do that I get the following error: flash error ... and address error , and so on Do I have to install the drives for Mib520 on XubuuTOS2.0?? *** Gonga, Antonio Oliveira e-mail: [EMAIL PROTECTED]

[Tinyos-help] How to install an application to a mote/XubunTOS2.0

2007-12-06 Thread antonio gonga
Hey all, I'm new to TinyOS-2.0. I installed xubunTOS-2.0 and I want to compile and install the Blink application. I changed alitle bit the application(timers) but when I execute the command make tmote I don't see any change.. _

[Tinyos-help] MultiHopRouter/TinyOS-2.x

2007-12-06 Thread antonio gonga
hey all, I'm new to TOS-2.0 and I'd like to know which folder contains the implementation of MultiHopRouter like in TOS-1.x. If there's another equivalent to MultiHop how is it called? I need a routing algorithm that's why I'm asking you. Is there any routing algorithm that can route packets in

[Tinyos-help] How to use TimeStamp in tinyOS-1.x or TinyOS-2.x?

2007-11-30 Thread antonio gonga
Hey all, I'd like to use timeStamp while sending a message. The Sender insert the time on which the message was sent, and the Base Station also inserts the time when the message is received. On the application layer (java Application, the system converts and subtracts these values, so that a

[Tinyos-help] TinyOS-1.x and TinyOS-2.x In the same PC

2007-11-17 Thread antonio gonga
Hey all, I want to migrate to TinyOS-2.x but I'd like to keep my TinyOS-1.x installation while I'm not skilled yet with TinyOS-2.x syntax. And I'm still using Eclipse Plugin for TinyOS which is only supported by version 1. My question is: Is it possible to have two Installations of TinyOS in

[Tinyos-help] Help-TinyOs-1.x

2007-09-26 Thread antonio gonga
Hey all, I'm using MultiHopRouter to send messages between the sensors, but I'm facing a strange situation. When I use TOSBase in the sink node, the other 2 motes don't communicate to each other(juts the one closed to the sink node send messages, the other don't recognize the midle mote), but

[Tinyos-help] How can I receive Messages sent by TOSBase in a micaZ Mote?

2007-08-03 Thread antonio gonga
hey all,I've had big problems.. I'm sending messages to a Java Application via TOSBase, and I don't have problems with it, but when I send messages from the Java Application to the Mote, the messages correctly arrive at TOSBase because I do the typecast and I'm able to extract all fields.. but

[Tinyos-help] How to Send Msgs fromTOSBase to a Mote Using GenricComm

2007-08-02 Thread antonio gonga
Hey all,I'm trying to send messages from the TOSBase to a Mote... I receive the packet correctly in TOSBase.. but the Mote is not receiving...I need your suggestions...configuration Receiver {}implementation {components Main, ReceiverM;components GenericComm as Comm;components

[Tinyos-help] Reciving and Sending messages via TOSBase_TinyOS-1.x_micaz

2007-08-01 Thread antonio gonga
to 18please help me...thanks in advance-antonio gonga _ See what you’re getting into…before you go there. http://newlivehotmail.com___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU

[Tinyos-help] Receiving messages via TOSBase

2007-07-31 Thread antonio gonga
Hey All,I'm sending query packets from a Java Application to a Mote but I'm unable to typecast the message at TOSBase and consequently I don't receive nothing.Does anyone know how to send messages to a mote via TOSBase?Thanks in advance..-antonio.***Gonga, Antonio

[Tinyos-help] MoteIF_Java_Tools

2007-07-24 Thread antonio gonga
; jTextArea1.setCaretPosition(jTextArea1.getText().length());}/** * * @author antonio gonga * */class MessageReceive implements MessageListener, ActionListener{/** * @param id * @param message */public void messageReceived(int Id

[Tinyos-help] MoteIF_messageReceived_not_working_TinyOS-1.x

2007-07-24 Thread antonio gonga
(msg.toString());}else{throw new RuntimeException(Unknown type: + message);}}/** * * @author antonio gonga * */class MessageReceive implements MessageListener, ActionListener{/** * @param id * @param message

[Tinyos-help] TinyOS-1.x_MoteIF_Java Tools

2007-07-23 Thread antonio gonga
new RuntimeException(unknown packet type: +message); } }}thanks in advance..-Antonio Gonga _ PC Magazine’s 2007 editors’ choice for best web mail—award-winning Windows Live Hotmail. http://imagine-windowslive.com/hotmail

[Tinyos-help] TelosB-Eclipse plugin

2007-06-28 Thread antonio gonga
Hey all,I need your help regarding to TelosB motes, I'm using Eclipse plugin, but I'm unable to program the motes,Can u help me??.. antonio _ With Windows Live Hotmail, you can personalize your inbox with your favorite color.

[Tinyos-help] Eclipse Plugin for TinyOS-1.x Help

2007-06-26 Thread antonio gonga
Hey all.I'm having problems to get to run the Eclipse plugin fom TinyOS, I follow all instruction, but when I run it, I always get the following error:Unable to open TinyOS.perspective2I just tried 5 times... but I don't know what's wrong..thanks

[Tinyos-help] HelpTinyOS-1.x-Eclipse Plugin

2007-06-25 Thread antonio gonga
Hey all,I installed the eclipse plugin for TinyOS, but when I try to compile an application, I get the following error:nesc1.exe- Entry Point Not FoundThe procedure entry point __getreent could not be located in the dynamic link library cygwin1.dll

[Tinyos-help] ADCControl_Intreface/TinyOS-1.x

2007-06-19 Thread antonio gonga
Hey All,According to my findings in the tinyos-1.x/tos/interfaces directory, and after reading the ADCControl interface I have some doubts that I expect you can help me to make me clear.I need to sample a microphone with a Sampling rate over 64Kbps, because I need to playback the audio samples,

[Tinyos-help] [tinyOS-1.x]RadioSuspendC

2007-06-18 Thread antonio gonga
Hey all,Can use this configuration with MicaZ motes??I'm using tinyOS-1.x. and I'd like to suspend the Radio while I'm sampling data from ADC interface. In some applications that I found they use itwith mica2 motes... thanks in advance..-antonio

[Tinyos-help] PrintBigMsgs.java

2007-06-18 Thread antonio gonga
Hey all,can u e-mail me this file please?-antonio _ Hotmail to go? Get your Hotmail, news, sports and much more! Check out the New MSN Mobile! http://mobile.msn.com___ Tinyos-help mailing

[Tinyos-help] tinyOS-1.x_ADCControl_Interface

2007-06-18 Thread antonio gonga
Hey All,According to my findings in the tinyos-1.x/tos/interfaces directory, and after reading the ADCControl interface I have some doubts that I expect you can help me to make me clear.I need to sample a microphone with a Sampling rate over 64Kbps, because I need to playback the audio samples,

[Tinyos-help] MIG

2007-06-16 Thread antonio gonga
Hey All ,I need your help regarding to MIG.I'm tried to use mig to generate Java Classes automatically, and I got it to work, but my problem is that in the generated classes there are no packages... I don't know why..thanks in advance-antonio

[Tinyos-help] [tinyOS_1.X]Audio_playback_MTS310_Microphone

2007-06-11 Thread antonio gonga
Hey all,I'm using micaZ motes and sampling the MTS310 sensorboard microphone.. I need some aplication that can help me to play back the audio..and I also want to know if its possible to change the audio format from microphone.. someone told that the audio from microphone is PCM_10bits length, I

[Tinyos-help] MIG(message interface Generator)

2007-06-11 Thread antonio gonga
Hey all,I'm using tinyos 1-x and micaz motes, I need help regarding to MIG.If anyone knows how to use it, feel free to email me. _ Play free games, earn tickets, get cool prizes! Join Live Search Club. 

[Tinyos-help] MultiHopRouter and ADC.getContinuosData

2007-06-04 Thread antonio gonga
Hey All,I'm using TinyOS 1.x/micaZ , and I'm trying to Sample the MTS310/Microphone, I'm unable to send data whenever I use MultiHopRouter and ADC.getContinuosData()I already did it before, but it took more than 5 minutes just the motes start to transmit to each other.but it works when I use

[Tinyos-help] Interfaces

2007-01-02 Thread antonio gonga
Hey all, I'm having a little problems with my project.. please does anyone know how I can overcome this problem? view code please. Can I use an Interface that I implement in the same program that I'm implementing it?? ex: CONFIGURATION configuration Example{ provides interface SendB; }

[Tinyos-help] raw PCM player

2006-10-11 Thread antonio gonga
hello, does anyone have a program that's able to play a raw PCM samples? I need this program because I'm reading audio from microphone and I need to play it. please feel free to answer back me regards antonio gonga ___ Tinyos-help mailing list

[Tinyos-help] MultiHopRouter

2006-09-28 Thread antonio gonga
Hello, I need your help. I'm having one situation that I cannot understand. I'm using MultiHopRouter routing protocol between MicaZ Motes, I'm having two situations very strange: Situation 1: Timer.fired(){ call ADC.getData() ;// } The synchronization between motes takes at least 1minute

[Tinyos-help] PCM to any format

2006-09-27 Thread antonio gonga
Hello I need your help, does anyone knows how can I convert PCM samples to any format that I can play? please feel free to answer back to me thanks in advance === *Gonga, Antonio Oliveira : STUDENT OF *Electrical and Computer Engineering(LEEC) *Mobile:+351

[Tinyos-help] ADC.getContinuousData()

2006-09-19 Thread antonio gonga
hello, any one knows how to stop adc.getcontinuousdata()? please feel free to answer me antonio ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] ADC.getContinuousData()

2006-09-19 Thread antonio gonga
(). Andrés. From: antonio gonga [EMAIL PROTECTED] To: tinyos-help@Millennium.Berkeley.EDU Subject: [Tinyos-help] ADC.getContinuousData() Date: Tue, 19 Sep 2006 11:19:39 + hello, any one knows how to stop adc.getcontinuousdata()? please feel free to answer me antonio

[Tinyos-help] PrintBigMsgs.java

2006-09-06 Thread antonio gonga
hello I need one program Called PrintBigMsgs , if anyone cai help me feel free to answer back thanks ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] HighFrequencySampling

2006-09-04 Thread antonio gonga
Hello, I'm Having problems to use HFS when I try to program a mote a get an error like this: MicroTimerM.nc:100: `CTC1' undeclared (first use in this function) unfortunatelly a don't knows what does CTC1 means. I'd like to use HFS to acquire audio from microphone in MTS300. if anyone knows please

[Tinyos-help] HFS and MicroTimer

2006-09-04 Thread antonio gonga
Hello all, I'm working with Micaz motes and I'd like to use HFS(highFrequencySampling) to acquire audio from Microphone in MTS300 but when i try to program the HFS into mote I get an error like this: ncc -o build/micaz/main.exe -Os -finline-limit=10 -Wall -Wshadow -DDEF_TOS_AM_GROUP=0x7d

[Tinyos-help] MTS300 Microphone

2006-09-01 Thread antonio gonga
Does anyone have just worked with MicC? I need your help, I'm developing an aplication that I need to capture and reproduce(playback) the acquired audio. I've received a data from microphone but i dont know how I canpaly it. Someone said to me that the adc range is 10 or 12 bits. Please if anyone

[Tinyos-help] TinyOS Eclipse Plugin

2006-08-21 Thread antonio gonga
does any one knows how is the coorect form to setup TinyOS Eclipse Plugin?, I just tried lots of times and i'm getting the same error: "cannot open TinyOS.prespective2", and when I open the Wrapper Env, it Warns: Cannot Open Class: please if any one knows feel free to answer back me. thanks in

[Tinyos-help] MicroTimer

2006-08-17 Thread antonio gonga
please a need any Idea to use it, to acquire data from Microphone ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] Timer Rate

2006-08-14 Thread antonio gonga
Hello, I'm using MicC component to acquire audio from Microphone in MicaZ Motes, Anyone knows what´s the correct Timer rate may Iuse(sample period)? At this time I'm using 50ms. Timer.start(TIMER_REPEAT,50); event result_t Timer.fired(){ call ADC.getdata() } |Auido Sensor| ---Via Rfm to

[Tinyos-help] Timer Rate

2006-08-14 Thread antonio gonga
Hello, I'm using MicC component to acquire audio from Microphone in MicaZ Motes, Anyone knows what´s the correct Timer rate may Iuse(sample period)? At this time I'm using 50ms. Timer.start(TIMER_REPEAT,50); event result_t Timer.fired(){ call ADC.getdata() } |Auido Sensor| ---Via Rfm to

[Tinyos-help] Audio capture

2006-07-17 Thread antonio gonga
hello, How may I capture and store audio from Microphone in MTS300/310? if anyone knows how mayI do that , please feel free to make know me. thanks. ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU

[Tinyos-help] micaz

2006-07-15 Thread antonio gonga
hello; I'm devoloping a small project, my objective is to aquire audio from 51 pin audio interface, but untill now I dont know how to do that, please if anyone knows feel free to make know me. regards ___ Tinyos-help mailing list

[Tinyos-help] micaz

2006-07-15 Thread antonio gonga
hello; I'm using MTS300/310 Multi sensor Board and I need to acquire audio from microphone and send it to the Base station to be Played, please if anyone knows how can I aquire audio from Microphone feel free to make know me. And I'd like to know the type of data from Microphone, if it´s PCM or

[Tinyos-help] Routing

2006-05-18 Thread antonio gonga
I'm having problems with routing, I want to transmit data from one mote to TOSbase, but there is a mote between emiter and receiver(TOSBASE) the middle Motemust intercept the data and dysplays the content of payload into Leds ,please if any one knows how to intercept data and displays the content

[Tinyos-help] Routing and Intercept

2006-05-18 Thread antonio gonga
I'm having problems with routing, I want to transmit data from one mote to TOSbase, but there is a mote between emiter and receiver(TOSBASE) the middle Mote must intercept the data and dysplays the content of payload into Leds ,please if any one knows how to intercept data and displays the

[Tinyos-help] Sounder

2006-05-17 Thread antonio gonga
I've a sound sensor connected in a Mote, i don´t know how to play a sound when I receive data from another mote. I have forward the data packet received to BaseStaion. I'm trying to use surge and SurgeM application but i'm not sure if I will be successfull. Thanks

[Tinyos-help] ADC

2006-05-10 Thread antonio gonga
how can i read a single pin for example ADC0 ? i need it to continue may job ___ Tinyos-help mailing list Tinyos-help@Millennium.Berkeley.EDU https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] ADC0

2006-05-10 Thread antonio gonga
, i'm using MICAZ platform i've connected a buttom on pin ADC0 and I need to read the information from button and forward it into RFM. my problem is connected with aquiring data from ADC0 pin connected with button. i don't know how cain read a single pin ADC0 thanks

[Tinyos-help] (no subject)

2006-04-22 Thread antonio gonga
Spam detection software, running on the system mail.Millennium.Berkeley.EDU, has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator

[Tinyos-help] 51-pin Reading

2006-04-22 Thread antonio gonga
Dear Sirs, I'm a new user of tinyos, i've to develop an application able to read a botton connected in 51-pin interface, but i'm having a serious difficult to that, because a i don't know how to read a pin. I've been reading the source code of many application contained in it, but until now i