[Tinyos-help] UART sending series of commands to PC

2012-02-13 Thread #BHARTI GOEL#
Hi, I am trying to send a series of commands to the PC hyperterminal using UART interface. Now when I send a single command it works fine. But when I send a series of commands it stops working. I have tried to create delays after each command but still it does not work. Can anyone tell me what

Re: [Tinyos-help] UART sending series of commands to PC

2012-02-13 Thread Eric Decker
It is very strange to be sending modem commands to a pc but okay if you must. You are using UartStream which is split phase. You need to be catching the completion event (signal) from UartStream.sendDone. When the sendDone comes in you can then start up the next string you want to send. The

[Tinyos-help] Running 1.x code on 2.x

2012-02-13 Thread TUSHAR MAHESHWARI
How to run code designed for tinyos-1.x on tinyos-2.x??? ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] Running 1.x code on 2.x

2012-02-13 Thread Eric Decker
TinyOS 2 is significantly different. On purpose, it fixes a number of problems that were in T1. So you will have to port the T1 code over to T2 if you want to use it. There is no way to run T1 code on T2. It isn't that kind of Operating System. I believe there are some docs that talk about

[Tinyos-help] Reading a Soil Sensor Decagon 5te from UART port

2012-02-13 Thread acamap
Hello, I am trying to see the raw data from a soil sensor Decagon 5te. I see in some manual it work with 9600 baud rate. And dispatches his raw data in this form: i.e. : 56 432 6450DzG0D0A Where only is data in : 56 for Raw dielectric output, 432 Electrical conductivity, 645 is Temperature

[Tinyos-help] Surge in Tinyos-2.x

2012-02-13 Thread TUSHAR MAHESHWARI
In tinyos-1.x, there is one application Surge, i need to know how i can implement that application in TinyOS-2.1.1?? ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] This thing changed my life

2012-02-13 Thread Asier Arruti
pHi there.brbrdebt collectors are so annoying this couldnt have worked out better I knew things could only get betterbra href=http://dominogama.com/lastnews/72StephenAnderson/;http://dominogama.com/lastnews/72StephenAnderson//a a weight is lifted off my shouldersbrthis is the real dealbrbrsee

Re: [Tinyos-help] Need for help

2012-02-13 Thread Sergio Valcarcel
Hi, no idea at all. Probably you are interested in developing using the programming model of Tiny OS. On one hand that would be great in order to have available more signal processing components (like audio compression). But on the other hand I found that it takes quite a lot of time at the

Re: [Tinyos-help] Need for help

2012-02-13 Thread Mashal al-shboul
Hi Sergio, Thank you for the reply. Actually i am interested in compressing audio samples in C  since it is supported in tinyOS and nesC, so i would be grateful to you if you tell about such techniques to compress data locally in a sensor node before transmission. Have you heard about Intel IIP

Re: [Tinyos-help] Need for help

2012-02-13 Thread Sergio Valcarcel
Nope sorry. I have no idea about audio compression beyond the basics, and I have never implemented it. Neither do I know anything about the IIP. However if IIP is an instruction set, it will be processor dependent, so it may be the case that many architectures and cores that are ported to Tiny OS

Re: [Tinyos-help] Need for help

2012-02-13 Thread C.
You should search instead compression algorithms commonly used for audio signals. There are many algorithms and papers about it if you google'd a little (I ported some lossy and lossless compression algorithms for the MicaZ for my MsC thesis, there's plenty of bibliography). Off the top of my

Re: [Tinyos-help] Need for help

2012-02-13 Thread Mashal al-shboul
Thanks Antonio for the reply, Did you use ready library (e.g. in C code) to compress audio ?. In fact, i am searching for a quick solution to compress audio samples as of the type uint_16 which are in PCM raw format. Regards, Mash'al From: Antonio Liñán C.

[Tinyos-help] (no subject)

2012-02-13 Thread David Rodenas Herráiz
Hi all I'm trying to install TinyOS on a Windows 7 machine, but I am getting the following error: $ rpm -Uvh --force --nodeps avrdude-tinyos-5.6cvs-1.cygwin.i386.rpmPreparing... ### [100%] 1:avrdude-tinyos

Re: [Tinyos-help] UART sending series of commands to PC

2012-02-13 Thread Michael Schippling
Also I would recommend eliminating the busy-wait delay() by splitting the whole sending sequence into multiple calls driven by a timer. It's not much of a delay, but long-running tasks may end up blocking other tasks which need resources. MS Eric Decker wrote: It is very strange to be sending

Re: [Tinyos-help] (no subject)

2012-02-13 Thread András Bíró
Hi David, Giveio.sys doesn't work on Vista and newer, but if you don't plan to use parrellel port programmer, you don't need it. Andris On Mon, Feb 13, 2012 at 7:03 PM, David Rodenas Herráiz drod...@hotmail.com wrote: Hi all I'm trying to install TinyOS on a Windows 7 machine, but I am

Re: [Tinyos-help] (no subject)

2012-02-13 Thread David Rodenas Herráiz
Hi Andris You are right. I have just find the same answer. I am using the MicaZ devices and the MIB520CB Interface Board and I suppose that to install an app, I have to use make micaz install mib520,port. In this sense, as the MIB520CB Interface Board is connected to an usb port from my

Re: [Tinyos-help] (no subject)

2012-02-13 Thread David Rodenas Herráiz
Hi again I am sorry about the spam. I found the solution at http://docs.tinyos.net/tinywiki/index.php/Cygwin_User_Notes Thanks! From: drod...@hotmail.com To: tinyos-help@millennium.berkeley.edu Date: Mon, 13 Feb 2012 19:13:29 + Subject: Re: [Tinyos-help] (no subject) Hi Andris You are

Re: [Tinyos-help] Tinyos-help Digest, Vol 106, Issue 81

2012-02-13 Thread Mashal al-shboul
Hi David, To find what is the port name, you can use the command dmesg in linux environment , run it then plug the usb cable, the port will be detected and the name is shown. Regards, Mash'al From: tinyos-help-requ...@millennium.berkeley.edu

Re: [Tinyos-help] Running 1.x code on 2.x

2012-02-13 Thread Johny Mattsson
On 13 February 2012 22:12, Eric Decker cire...@gmail.com wrote: I believe there are some docs that talk about porting between the two. Indeed there is: http://www.tinyos.net/tinyos-2.1.0/doc/html/porting.html Cheers, /Johny -- Johny Mattsson Senior Software Engineer DiUS Computing Pty.

Re: [Tinyos-help] CoapBlip Compiler error

2012-02-13 Thread dwaraka nath
1. check the files that it is showing as not found. If found then its the making fault 2. try to update the TinyOS repository and compile again. 2012/2/13 Henrik Skjøt hen...@habs.dk I'm getting the same error. Is there another way to get a coap server up and running on a telosb? Any one

[Tinyos-help] error when make micaz blip

2012-02-13 Thread Mr.Thanakorn Prasansri
Dear Sir, I try to make Ppprouter on micaz mote but i got error like this. How can i fix it? In file included from /opt/tinyos-2.1.1/tos/lib/ppp/PppC.nc:78, from /opt/tinyos-2.1.1/tos/lib/ppp/PppDaemonC.nc:56, from PppRouterC.nc:16: In component `LedC':

Re: [Tinyos-help] Reading a Soil Sensor Decagon 5te from UART port

2012-02-13 Thread #BHARTI GOEL#
Hi, You can take a look at tinyos2.contrib for sample code. There is a similar one which takes reading from a soil sensor called EchoTeTelos. Here is the path. \tinyos-2.x-contrib\asu-impact\lib\echote_telos cheers Bharti From: