[Tinyos-help] 6Lowpan query

2012-04-23 Thread Dominic Follett-Smith
Hi there, I am running the UDPTemp example using two motes, one which acts the the 6Lowpan bridge (1), and the other which does the sensing (2), I would like to include a third mote (3), which would forward the info from (2) to the bridge (1). I thought of changing the address of the sensor

[Tinyos-help] sensor to adc program in nesC language

2012-04-23 Thread riya razz
hello sir, This is monisha i m need of your help i want a program which will convert a analog sin wave to digital values. in simple words a program for adc. i am using ATmega 1281 processor and iris mote.and i want to execute this program in a programmers notepad (PN2). please help me. i have to

[Tinyos-help] network topology in tinyos

2012-04-23 Thread Anshul Khandelwal
hey all, I m working on tinyos 2.1. i am new to tinyos. I want to build network topology in tinyos and how nodes are arranged,their parent,distance b/w nodes how to make program to this? plz help me -- With Regards Anshul Khandelwal Final year Computer Engineering NIT Jaipur

[Tinyos-help] Problems with IRIS

2012-04-23 Thread Rajarshi Middya
*Hello everyone, I had messaged you all about the problems I was having for TOSSIM compilation. That has been solved. I had to change the Python Version in the sim.extra file. However, the problem with make iris continues. When I typed make iris, the following message was

[Tinyos-help] Sending a bluetooth message+shimmer

2012-04-23 Thread Razee Hussein-Jamal
Hi, I have been trying to develop a Bluetooth application, where I send a Bluetooth message from my shimmer node to a PC or a smart phone. I have tried two applications to start with, the first: Tinyos-2-contrib-commits] CVS: tinyos-2.x-contrib/shimmer/swtest/Bluetooth I can compile this app

Re: [Tinyos-help] TelosB and IRIS sensor value calculation

2012-04-23 Thread laptopcss
Hallo, thanks for the input. We fixed the bug concerning the light sensor. On MTS 400: - LightTAOSTSL2250: 65535 The light sensor now reports a value of 467. But in the datasheets I can not find a conversion formular for international units. The only unit I found is for the temperature

Re: [Tinyos-help] Sending a bluetooth message+shimmer

2012-04-23 Thread mike healy
Hi, You might want to ensure you are using the latest version of these apps from the Sourceforge repository, and that you are building against the latest tinyos-main tree from Googlecode SVN. Some of those errors you are getting seem to indicate that you are using an old version of the main

Re: [Tinyos-help] TelosB and IRIS sensor value calculation

2012-04-23 Thread Francesco Ficarola
Hi, On 04/23/2012 03:04 PM, laptop...@gmx.de wrote: The light sensor now reports a value of 467. But in the datasheets I can not find a conversion formular for international units. The only unit I found is for the temperature value. Look at this:

[Tinyos-help] Question regarding generic components

2012-04-23 Thread Oldrine Lewis
Hi, Can I access the members in a user defined type inside a generic module? typedef struct { uint8_t m_count; }MyStruct; generic module MyModuleM(typedef type) { provides interface MyInterface; } implementation { command void

Re: [Tinyos-help] Question regarding generic components

2012-04-23 Thread Eric Decker
On Mon, Apr 23, 2012 at 7:05 PM, Oldrine Lewis ole...@sutron.com wrote: Hi, ** ** Can I access the members in a user defined type inside a generic module? * *** ** ** typedef struct { uint8_t m_count; }MyStruct; ** ** ** ** ** ** generic module

Re: [Tinyos-help] Question regarding generic components

2012-04-23 Thread Oldrine Lewis
Hi Eric, I wanted to make the module (MyModuleM ) a generic module so that it can handle different structs. The different structs all have some identical members. MyModuleM will perform some generic operations on these common members Thanks, Lewis From: Eric Decker

Re: [Tinyos-help] CC2420 DACTST and TOPTST

2012-04-23 Thread Eric Decker
On Wed, Apr 18, 2012 at 10:09 AM, Omar Hassan omarhassan...@gmail.comwrote: hi there, I am using tinyos 2.1.0, and Telosb motes, I want to set DACTST and TOPTST registers, but I cannot find them in CC2420SpiC. Access to those registers isn't provided as currently defined. The interface

Re: [Tinyos-help] Question regarding generic components

2012-04-23 Thread Eric Decker
On Mon, Apr 23, 2012 at 7:23 PM, Oldrine Lewis ole...@sutron.com wrote: Hi Eric, I wanted to make the module (MyModuleM ) a generic module so that it can handle different structs. Using a generic module is not exactly a good idea. The way generic works is it replicates code.