[Tinyos-help] MicaZ radio and unknown current

2015-09-15 Thread Sajjad Baghaee
Dear all, I prepared a code to read accelerator sensor periodically and turn the radio on after "sensor reading done" and transmit data and then turn the radio off upto next sensor reading. This code works fine but after each radio turn off (after 900msec) I observe an unknown current drawn which

Re: [Tinyos-help] Micaz Sim

2015-04-13 Thread sercan vançin
i found ncc folder in 'opt/tinyos-2.x/tools/tinyos/ncc ' and when i type 'which ncc' command , it returns nothing and it dosnt errror,too. From: ser_3...@hotmail.com To: tinyos-help@millennium.berkeley.edu Subject: RE: [Tinyos-help] Micaz Sim Date: Mon, 13 Apr 2015 12:50:51 +0300 Hi, İ

Re: [Tinyos-help] Micaz Sim

2015-04-13 Thread Davide Molteni
. From: ser_3...@hotmail.com To: tinyos-help@millennium.berkeley.edu Subject: RE: [Tinyos-help] Micaz Sim Date: Mon, 13 Apr 2015 12:50:51 +0300 Hi, İ think you are right in that it cant find any folder in 'usr/bin/ncc'. But How can

Re: [Tinyos-help] Micaz Sim

2015-04-13 Thread sercan vançin
Hi, İ think you are right in that it cant find any folder in 'usr/bin/ncc'. But How can install ncc and solve this problem ? From: never...@gmail.com To: ser_3...@hotmail.com; tinyos-help@millennium.berkeley.edu Subject: Re:[Tinyos-help] Micaz Sim Date: Sun, 12 Apr 2015 03:01:16 +0800 What

Re: [Tinyos-help] Micaz Sim

2015-04-11 Thread 俞杰
To: tinyos-help@millennium.berkeley.edu; Subject: [Tinyos-help] Micaz Sim Hi. I face a problem related to compiling the Blink application using tossim in tinyos-2.1.2 .İ typed the make micaz sim command but i got errors like below. sercan@sercan:/opt/tinyos-2.1.2/apps/Blink$ make micaz sim

[Tinyos-help] Micaz Sim

2015-04-11 Thread sercan vançin
Hi. I face a problem related to compiling the Blink application using tossim in tinyos-2.1.2 .İ typed the make micaz sim command but i got errors like below. sercan@sercan:/opt/tinyos-2.1.2/apps/Blink$ make micaz sim mkdir -p simbuild/micaz placing object files in simbuild/micaz writing XML

[Tinyos-help] micaz interrupt

2013-08-28 Thread He Dajiang (I2R)
Hi, I have a problem related to external interrupt. I have a sensor, which has one interrupt pin. I configured the sensor to generate an interrupt when some even happens. For the hardwire wiring, I did two experiments: one is I wired the sensor INT pin to micaz PE4/INT5; another PE5/INT5. The

Re: [Tinyos-help] micaz radio receive not working.

2013-07-24 Thread Janos Sallai
gdb should work on all platforms. You have to build with make platform debug. If you have an avr platform and work on Windows, you can debug in AVR studio. For this, you need to build with make platform avr-studio-debug. Janos On Tue, Jul 23, 2013 at 8:50 PM, He Dajiang (I2R)

Re: [Tinyos-help] micaz radio receive not working.

2013-07-23 Thread He Dajiang (I2R)
Can any experienced developer give some advice on how to ddebug my code? Institute for Infocomm Research disclaimer: This email is confidential and may be privileged. If you are not the intended recipient, please delete it and notify us immediately. Please do not copy or use it for any

[Tinyos-help] MicaZ current measurement for different Transmission Power settings

2013-06-03 Thread Sajjad Baghaee
Dear all, I want to measure the current consumption of MicaZ when Transmission Power is set to different values like 0dBm, -3dBm, ... -25dBm and compare my measurements with data sheet of MicaZ. for this aim I prepared a code. In this code the transmitter mode is activated and receiver mode is

Re: [Tinyos-help] MicaZ current measurement for different

2013-06-03 Thread He Dajiang (I2R)
My question : for different Transmission Power settings the measured current is about 22.9mA when sending packet and 22mA when not sending data. but according to datasheet for different Transmission Power settings we should have different current consumption. by default, even when not sending

[Tinyos-help] micaz Internal RC oscillator selection

2013-05-03 Thread He Dajiang (I2R)
hi there, Is there a way to change micaz internal RC oscillator? There is a file tos\chips\atm128\Atm128Clock.h, which defines the selection enum values, but in no where can I find it is being used. If it is not implemented, how can I add the implemention? Thx. Cheers Institute for Infocomm

Re: [Tinyos-help] Micaz and mts300/mts310 microphone to sample sound

2013-04-12 Thread riad
Can you let me know how could you get this result? -- View this message in context: http://tinyos-help.10906.n7.nabble.com/Micaz-and-mts300-mts310-microphone-to-sample-sound-tp3789p23038.html Sent from the TinyOS - Help mailing list archive at Nabble.com.

[Tinyos-help] MicaZ Radio managment

2013-03-28 Thread SB SB
Dear all, I am new to TinyOS. I would like to adjust the radio operation time and duty cycle of that. in my test bed I have micaz motes. I set the micaz to read magnetic sensors every 2 seconds periodically. By checking the current consumption I found out that during the magnetic sampling times

[Tinyos-help] MicaZ array size problem

2012-07-13 Thread Ted Ward
Hello all. I'm trying to allocate a circular buffer. The element is a user defined type containing two timestamps. This all works great if my queue (array) size is 100 elements. But if I change it to 200 elements, the mote never boots. typedef struct WhiteSpaceStructure {

Re: [Tinyos-help] MicaZ array size problem

2012-07-13 Thread Eric Decker
Take a look at the memory map to see if you'ver overflowed available space. Most likely you are over running the stack. objdump is the native object dumper. You need to use the crosscompiler tool which I beleive in your case would be avr-objdump. For symbol table I use nm, in your case

Re: [Tinyos-help] MicaZ array size problem

2012-07-13 Thread Ward, Ted
Is there a heap? I'm declaring the array outside of any functions' is this still stack? If it is overflowing memory are there any customary TinyOS ways of addressing the issue that I'm missing? Sent from my ASUS Eee Pad Eric Decker cire...@gmail.com wrote: Take a look at the memory map to

Re: [Tinyos-help] MicaZ array size problem

2012-07-13 Thread Eric Decker
On Fri, Jul 13, 2012 at 9:40 PM, Ward, Ted ted.w...@okstate.edu wrote: Is there a heap? I'm declaring the array outside of any functions' is this still stack? there isn't a heap per-say. malloc is frowned on in embedded systems... wild pointers etc. If you declare an array outside of a

[Tinyos-help] Micaz measuring time

2012-01-26 Thread Martin Stehlik
Hello! I need to measure time in my application. I had no problems with TelosB platform (interface CounterTMilli, uint32_t provided by the component CounterMilli32C) but I have encountered problems with MicaZ. Unfortunately I have not found solution in the forum or in the tutorials. According to

Re: [Tinyos-help] micaZ error

2011-11-16 Thread Accapenga
try this: add the following file to the blink application makefile: CFLAGS +=-DCC2420_DEF_CHANNEL=26 CFLAGS +=-DCC2420_TXPOWER=TXPOWER_MAX DEFAULT_LOCAL_GROUP=125 HTH MaHa Khalid wrote: Hi, I have problem in programming micaZ I got Programmer is not responding error when I tried to

[Tinyos-help] Micaz Mote interfacing with Beagleboard

2011-06-23 Thread TJ
Hey!! I am using a Micaz Mote and i need to communicate over UART with a Beagleboard-xM. I've got the Mote communicating with a linux system. I wanted to know what do need to install on the beagleboard to do the same, as there are space constraints.. Thanks. Always Yours Tejovanth Tj n Spook

[Tinyos-help] micaz spi speed

2011-06-22 Thread Prasanna Karthik V
hi, What is MicaZ platform's SPI speed? I tried searching for it but couldn't get it. I am more interested in the practical speed achieved by it. ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

[Tinyos-help] micaz voltage increasing when battery droop

2011-05-24 Thread srsini srsini
Hello, i try to compute the remaining power in the battry in micaz !! but each time i do the test i find that the power is increasing . that's strange , i don't understand the matter. PLZ any idea could help. i use this # */ module VoltageP { provides interface Atm128AdcConfig; }

Re: [Tinyos-help] micaz voltage increasing when battery droop

2011-05-24 Thread Michael Schippling
As I understand it, the mica platforms measure battery voltage by taking a reading from a fixed 1.23v chip. Since the ADC reference (full-scale-value) _is_ the battery itself, the reading from the chip will _increase_ as the battery droops. You may be seeing this effect, but I thought the Voltage

Re: [Tinyos-help] micaz voltage increasing when battery droop

2011-05-24 Thread 崔晓宗
Battery Voltage. The returned value represents the difference * between the battery voltage and V_BG (1.23V). The formula to convert * it to mV is: 1223 * 1024 / value. 2011/5/25 Michael Schippling sc...@santafe.edu As I understand it, the mica platforms measure battery voltage by taking a

Re: [Tinyos-help] Micaz RF Power

2011-04-13 Thread Dave McGee
Thank you On 12 April 2011 19:49, 崔晓宗 cpp...@gmail.com wrote: There you will find the CC2420Packet implementation, with the setPower command. That will allow you to change the transmission power. That command accepts values from 0 to 31. 2011/4/13 Dave McGee daveomc...@gmail.com Hi there,

[Tinyos-help] Micaz RF Channels

2011-04-13 Thread Dave McGee
Hi there, What is the range of RF channels on MicaZ? Is it 0 to 11? Regards, Dave ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] Micaz RF Channels

2011-04-13 Thread Dave McGee
Thanks Michael! On 13 April 2011 11:14, Michael Schippling sc...@santafe.edu wrote: This is the selection in the Tos1.x MakeLocal makefile: # 15, 20, 25 26 seem to be non-overlapping with 802.11 # #CFLAGS +=-DCC2420_DEF_CHANNEL=11

[Tinyos-help] Micaz RF Power

2011-04-12 Thread Dave McGee
Hi there, Can anyone tell me what the RF power range is on a MicaZ mote? (Is it like 0 - 15?) Regards, Dave ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Re: [Tinyos-help] Micaz RF Power

2011-04-12 Thread 崔晓宗
There you will find the CC2420Packet implementation, with the setPower command. That will allow you to change the transmission power. That command accepts values from 0 to 31. 2011/4/13 Dave McGee daveomc...@gmail.com Hi there, Can anyone tell me what the RF power range is on a MicaZ mote?

[Tinyos-help] MicaZ Responses

2011-03-15 Thread Breno Guimarães
Hi, I'm working with MicaZ motes on TinyOS 2.0.1. My application is simple. I have one mote sending a broadcast message and other two responding to the first whenever they receive any message. Therefore, the first mote receive two messages almost at the same time. When running on TOSSIM, I

Re: [Tinyos-help] MicaZ Responses

2011-03-15 Thread Michael Schippling
In general, lower level collision detection should minimize the number of attempts to send simultaneous messages. But if your two slave motes are out of range of each other they won't detect a collision. Or if they consistently try to transmit at _exactly_ the same time I guess they wouldn't

Re: [Tinyos-help] MicaZ Responses

2011-03-15 Thread Philip Levis
On Mar 15, 2011, at 12:00 PM, Breno Guimarães wrote: Hi, I'm working with MicaZ motes on TinyOS 2.0.1. My application is simple. I have one mote sending a broadcast message and other two responding to the first whenever they receive any message. Therefore, the first mote receive two

[Tinyos-help] Micaz and mts300/mts310 microphone to sample sound

2011-02-17 Thread 崔晓宗
Hi, I am using Micaz and MTS310 sensorboard's microphone to sample the sound, and I got the following data 594 361 493 494 424 592 515 489 562 426 447 451 458 562 But I don't know how to use and parse these data. If I want to konw the sound is relatively large or small, how should I calculate

Re: [Tinyos-help] Micaz

2011-01-23 Thread Michael Schippling
Packet collision should be handled in the lower level radio code, so you don't need to worry about it. Messages can be lost due to noise, distance, or other interference, but it doesn't sound like that's the problem if it works the second time around. Maybe you need to wait a while before first

[Tinyos-help] Micaz

2011-01-22 Thread firas obeidat
HI I am working on micaz,its for my 4th year project,and I encountered this problem that even my profs cant solve it... I am trying to send packets between mica z on the mica z radio in a specific order so for ex: mica A send a packet to Mica B.. once Mica B receive this packet it sends a

Re: [Tinyos-help] Micaz smallest sending rate

2011-01-20 Thread Philip Levis
On Jan 18, 2011, at 2:44 PM, Jimmy wrote: Hi, Currently I have a question of Micaz smallest sending rate. When I specified the packet size as 90 bytes and packet interval as 20 ms, I checked the received sequence id and found nearly only half of the transmitted packets were received.

[Tinyos-help] Micaz smallest sending rate

2011-01-19 Thread Jimmy
Hi, Currently I have a question of Micaz smallest sending rate. When I specified the packet size as 90 bytes and packet interval as 20 ms, I checked the received sequence id and found nearly only half of the transmitted packets were received. But when I decreased the packet size to 80 bytes, or

[Tinyos-help] Micaz, CC2420 and Timestamps

2010-10-20 Thread Sinan Yildirim
Hi all, is it possible to get packet timestamps in microseconds precision for Micaz platform? Best wishes, Sinan. ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

[Tinyos-help] MicaZ mote - Radio config, Send/receive program

2010-10-05 Thread Péter Kókai
Hi All! I need help! I hope you can help me! So, first: I have a MicaZ mote, and a MIB520 programing board. The micaz mote has a cc2420 radio. So, how difficult write a tinyos program, what is just for send some given data to broadcast - ( and it will be received by an assembly program.) And the

[Tinyos-help] MicaZ - CRC disable?

2010-10-05 Thread Péter Kókai
Hi All! Is it possible to disable the AUTOCRC in the MicaZ mote? If it is, how I can do it? Pls help, its important! Thx in advance P. Kókai ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

[Tinyos-help] Micaz frequency

2010-05-27 Thread Yasser Zahedi
Hi All, I want to do a project with micaz motes by using its default frequency which is 2.4 GHz of CC2420 chip. Then I need to use frequency in the range 1 KHz and 100 KHz,.. Can I change the frequency of the micaz mote. Thanks Yasser ___ Tinyos-help

[Tinyos-help] micaz sim

2010-04-01 Thread Shyam Sahu
Hi. I have encountered a problem while compiling the BLINK app s...@ubuntu:~/tinyos/apps/Blink$ *make micaz sim* mkdir -p simbuild/micaz placing object files in simbuild/micaz writing XML schema to app.xml compiling BlinkAppC to object file sim.o ncc -c -shared -fPIC -o simbuild/micaz/sim.o

Re: [Tinyos-help] micaz sim

2010-04-01 Thread Kaisen Lin
You might want to install the build-essential package Kaisen - Shyam Sahu jus.k...@gmail.com wrote: Hi. I have encountered a problem while compiling the BLINK app s...@ubuntu:~/tinyos/apps/Blink$ make micaz sim mkdir -p simbuild/micaz placing object files in simbuild/micaz writing

[Tinyos-help] Micaz Motes Tx range

2010-03-24 Thread Vikram vik76
Hello, Is there any table which lists the Transmission range in Metres/feet (any other metric) for different transmission power values between 0-31. Regards Vikram ___ Tinyos-help mailing list Tinyos-help@millennium.berkeley.edu

Re: [Tinyos-help] Micaz Motes Tx range

2010-03-24 Thread Arik Sapojnik
I don't think it is possible to provide such a table, since the Tx range depends on the battery, environment (obstacles), other transmitting devices (not necessarily motes), nature of your own mote (every mote is slightly different due to it's analog components ) and probably another things that I

Re: [Tinyos-help] Micaz Schematics

2010-02-06 Thread Wei Liu
What you want can be found in MPR-MIB Series Users Manual from Crossbow Technology. 2010/2/5 Sourabh Sankule sank...@gmail.com Hi, I am designing a new hardware platform in which I am using ATmega-128 and CC2420. I need to know the connection/interface between CC2420 and Atmega (apart

Re: [Tinyos-help] Micaz Schematics

2010-02-06 Thread Sourabh Sankule
Hi, I got the connection details from *HplCC2420PinsC.nc* file in the folder tinyos-2.x\tos\platforms\ micaz\chips\cc2420\ It is not given in the manual from Crossbow. Appreciate the help. Regards Sourabh Sankule www.sourabh.sankule.com On Sat, Feb 6, 2010 at 3:31 PM, Wei Liu

[Tinyos-help] Micaz Schematics

2010-02-05 Thread Sourabh Sankule
Hi, I am designing a new hardware platform in which I am using ATmega-128 and CC2420. I need to know the connection/interface between CC2420 and Atmega (apart from SPI few more pins are involved). I have tried searching the schematic but no results. Also Mica-2 uses CC1000 and its interfacing is

Re: [Tinyos-help] Micaz Schematics

2010-02-05 Thread MIchael Schippling
I believe the Xbow User Manuals have micaz addenda that show what is different from the mica2. But I've never seen a full micaz schematic. MS Sourabh Sankule wrote: Hi, I am designing a new hardware platform in which I am using ATmega-128 and CC2420. I need to know the

Re: [Tinyos-help] MICAZ BYTE EEPROM Issue.

2010-02-01 Thread Sravan Kumar Thokala
Please anybody On Fri, Jan 29, 2010 at 8:58 PM, Sravan Kumar Thokala tsravanku...@gmail.com wrote: Hi All, I really need help in solving this issue.. I appreciate your reply or suggestion in solving the issue... I'm using MICAZ mote and using the ByteEEPROM method to store and read the

[Tinyos-help] MICAZ BYTE EEPROM Issue.

2010-01-29 Thread Sravan Kumar Thokala
Hi All, I really need help in solving this issue.. I appreciate your reply or suggestion in solving the issue... I'm using MICAZ mote and using the ByteEEPROM method to store and read the data from EEPROM. 1) The allocation call is successful. -- *call

Re: [Tinyos-help] Micaz Data rate

2010-01-23 Thread YUSNAIDI MD YUSOF
[tinyos-help-boun...@millennium.berkeley.edu] On Behalf Of Paul Johnson [oewyn...@gmail.com] Sent: 22 January 2010 15:43 To: tinyos-help@millennium.berkeley.edu Subject: Re: [Tinyos-help] Micaz Data rate Yusnaidi, You may have misunderstood, nothing is transmitted by the mote unless the program calls

[Tinyos-help] Micaz Data rate

2010-01-22 Thread YUSNAIDI MD YUSOF
Hi All, I came across the MicaZ datasheet and found that the data rate for MicaZ is 250 kbps. Thus, it came into my thought, if I set the Timer as Timer.startPeriodic(1000) which is to fire every 1 second, does that mean every 1 second there is amount of 250 kilobit data sent? A simple

Re: [Tinyos-help] Micaz Data rate

2010-01-22 Thread Paul Johnson
Yusnaidi, You may have misunderstood, nothing is transmitted by the mote unless the program calls the appropriate method (AMSenderC.send() in most cases). If you make a timer with Timer.startPeriodic(1000) and do nothing inside the Timer.fired() event, nothing will be sent over the radio.

[Tinyos-help] Micaz uC-radio connection

2010-01-14 Thread Mark Patrick Cabrera
How does the SPI connection works between the Atmega128 and the CC2420 in a Micaz mote? I am thinking whether I can free up some of the pins currently dedicated with the transceiver. - Patrick Cabrera ___ Tinyos-help mailing list

[Tinyos-help] MICAz radio: CC2420 or MPR2400?

2009-12-30 Thread Vikram vik76
Hello, I would like to know what is the radio that is used by the MICAz motes? Is it CC2420 or MPR2400 ? and what are the differences between them? I want to set the transmission power to a very low value. I used CC2420_DEF_RFPOWER for values 1 and 2. I was surprised to see that for the value

Re: [Tinyos-help] MICAz radio: CC2420 or MPR2400?

2009-12-30 Thread Paul Johnson
Vikram, The micaz uses the CC2420 radio (the tmote sky also has the cc2420). In general, I wouldn't be surprised that different hardware sees different transmission ranges, even for identical radio hardware. There are probably a dozen different reasons why the devices have different

Re: [Tinyos-help] MicaZ, cc2420 radio configuration - nesC program

2009-10-19 Thread Michael Schippling
You should be able to use the demo apps Oscilloscope, Sense, CntToRfm, or others to send periodic messages formatted in the TOS manner. It will require installing the whole enchilada in order to get the necessary tools to do the compile and download, but no actual programming is involved. Look at

[Tinyos-help] Micaz and UART1

2009-10-16 Thread Matthew Bygo
Hi all, HplAtm128UartC provides an interface to both UART 0 and 1... what happens if one uses the UART1 interfaces on a MicaZ ? I don't have the schematics for the MicaZ, but the Mica2 schematics don't show a UART1... There is a USART1, but I think this is accessed through a completely

Re: [Tinyos-help] Micaz mote running with tinyos 1.x

2009-09-14 Thread Michael Schippling
micaz's are supported under TOS 1.1.10 and greater you can find some instructions for downloading T1 versions here: http://webs.cs.berkeley.edu/tos/download.html Also XBOW Moteworks contains a late version of T1, but without the regular doc and tools trees. MS Adeel Akhtar wrote: Hi All, can we

[Tinyos-help] Micaz mote running with tinyos 1.x

2009-09-13 Thread Adeel Akhtar
Hi All, can we run micaz motes with tinyos 1.x, if yes then kindly tell the lcation from wherer i can get the respective tinyos version to run my micaz motes easily. i have configures tinyos 2.1 and it is working properly but rinning tossim for simulation is very complex, that's why i want to work

Re: [Tinyos-help] MICAz mote query

2009-06-12 Thread Michael Schippling
micaz's have both hardware and software level acks which can be enabled in your code. When enabled you get a flag in the message.ack field in sendDone(). There is no automatic retry or anything fancy though. Search this list for information about them. MS bharat naik wrote: Hi, I wanted

Re: [Tinyos-help] MICAz schematics

2009-06-07 Thread Michael Schippling
Not bad English, just didn't know to what you were referring... I would place a small wager that you are seeing the MAC protocol backoff, although 20 micro-sec seems a little short... Search this list for MAC related stuff, I think there is an approved way to change the behavior. MS Carlos Gil

Re: [Tinyos-help] MICAz schematics

2009-06-06 Thread Carlos Gil Soriano
Hi Michael, You're right regarding to SPI problems. I don't expect to find problems with SPI in micaz. I've been testing continuous sending in cc2420 in micaz and, after carefully read data sheet and all code (line by line), there's one spare variable timing. The value of this timing moves from

Re: [Tinyos-help] MICAz schematics

2009-06-06 Thread Michael Schippling
I'm not sure what spare variable timing means, but the protocol does have a random backoff 'feature' for CDMA (or whatever the correct Multi-Letter-Acronym is). Another delay might be due to something sampling the SPI bus for other activity. Can you verify that no other SPI access is being

Re: [Tinyos-help] MICAz schematics

2009-06-05 Thread Michael Schippling
I think it's one of those little lapses that makes TOS so intriguing. Xbow seems to have chosen not to publish a full schematic, only the bits that changed from the mica2 when they added the different radio. So what's on that 2420 radio page is probably the best you'll find. I do remember

[Tinyos-help] MICAz schematics

2009-06-02 Thread Carlos Gil Soriano
Hi everyone, I was looking for the schematics of MICAz but I've found nothing. Do you know where I can find them? I've taken a look to xbow site but it only appears a few parts of the schematic, not the whole one. Regards, Carlos ___ Tinyos-help

Re: [Tinyos-help] MICAz schematics

2009-06-02 Thread Michael Schippling
I thought it was in the User's Manual: http://www.xbow.com/Support/Support_pdf_files/MPR-MIB_Series_Users_Manual.pdf but you need to piece it together using the mica2 bits as well. I have a nice mica2 schematic here: http://www.etantdonnes.com/Motes/mica2_sch.pdf which I can't find at:

[Tinyos-help] Micaz installing problem

2009-05-17 Thread Fahad Al-Jabarti
Hi all, I have a problem with installing the Blink application on my mote. My mote is in the platform of micaz ( I built the node myself)so I'm not using MIB boards. i'm using AVRISP programmer with USB cable connected to my PC and serial cablr connected to the node. I've been

[Tinyos-help] micaZ mote -- cc2420 radio controll

2009-04-20 Thread Péter Kókai
Hi All! I have a Micaz mote and Mib520 programming board. And I use assembly language to program the mote. To control the cc2240 I use the SPI interface. I configure the SPI interface of the mC according to the datasheet of the CPU. SPI_MasterInit: ; Set MOSI and SCK output, all others input

[Tinyos-help] MicaZ: UART0 vs. radio

2009-03-27 Thread Nicos Gollan
Hello, We are trying to forward data from an external serial interface over the radio. To do that, we read data (three small packets, 96B total) from Atm128Uart0C, wait a few ms on a TMilli timer, and forward it over AMSenderC. This works well as long as the node is alone; however, as soon as

[Tinyos-help] Micaz - How can I download the content of the falsh of the uC

2009-03-26 Thread Péter Kókai
Hi all!! I use Micaz mote with MIB520 and TinyOS 2.1.0. I have a problem! I look for the solution on the net and in the archive, but I can't find! I need to dowload the content of the flash memory of the processor! But I don't know how I can do it! I search for it, but I can't find till now! How

Re: [Tinyos-help] Micaz - How can I download the content of the falsh of the uC

2009-03-26 Thread Urs Hunkeler
Hi Kókai, You can use the uisp program, which is also used by TinyOS to program the motes. Type: uisp --help for a list of parameters and their meanings. Assuming that you use the MIB520 programming board with the serial port for programming being /dev/ttyUSB0, the command would be the

[Tinyos-help] Micaz wake up procedure

2009-03-04 Thread Wenting
Can someone explain the waking up procedure of micaz? How does every module start, what is the sequence each module start? Is ADC working during the whole startup? Thanks a lot, Wenting -- View this message in context: http://www.nabble.com/Micaz-wake-up-procedure-tp22339608p22339608.html

Re: [Tinyos-help] micaz power issue

2009-01-23 Thread Tony Han
Thanks to all, My current fuse setting is as below: $ uisp -dprog=mib510 -dserial=/dev/ttyS0 --rd_fuses -dpart=ATmega128 Firmware Version: 2.1 Atmel AVR ATmega128 is found. Fuse Low Byte = 0xff Fuse High Byte = 0xd8 Fuse Extended Byte = 0xff Calibration Byte = 0x00 -- Read Only

Re: [Tinyos-help] micaz power issue

2009-01-22 Thread Razvan Musaloiu-E.
Hi! On Thu, 22 Jan 2009, Tony Han wrote: Thank you for the help, Urs, I am not sure if the problem is due to brown-out. Since without re-install the program, that mote cannot function properly again. However, I will try your suggestion to see if brown-out detection will help to prevent this

Re: [Tinyos-help] micaz power issue

2009-01-22 Thread Urs Hunkeler
Hi Tony, To enable brown-out detection you have to program the corresponding fuse. The following document explains how to program fuses (look especially at the last two pages): http://www.xbow.com/Support/Support_pdf_files/UISPHELP.pdf In essence, you should probably read the current fuse

[Tinyos-help] micaz power issue

2009-01-21 Thread Tony Han
Hi All, Is there anyone have the following problem on your MICAZ? If your power supply is not stable, say, on and off rapidly, you will finally loss the functionality on your mote. Only after you reinstall that mote, it can start work again. I had this question is because when we use solar panel

Re: [Tinyos-help] micaz power issue

2009-01-21 Thread Urs Hunkeler
Hi Tony, When the supply voltage drops below a certain level, the microcontroller starts to behave in an unpredictable way. Usually, after a reset (without reprogramming) the microcontroller should be working again. If your motes work after a reset (without reprogramming), then maybe you

[Tinyos-help] Micaz BlinkToRadio

2008-12-16 Thread Miguel Silva
Hi again, i managed to successfully install on two micaz this example, however, i don't understant what the result should be... The two motes are blinking... Thanks in advance, miguel silva ___ Tinyos-help mailing list

[Tinyos-help] micaZ error

2008-12-03 Thread MaHa
Hi, I have problem in programming micaZ I got Programmer is not responding error when I tried to install Blink onto a micaZ [EMAIL PROTECTED] /cygdrive/c/cygwin/opt/tinyos-2.x/apps/Blink$ make micaz install.3 mib510,/dev/ttyS5mkdir -p build/micazcompiling BlinkAppC to a micaz binaryncc

Re: [Tinyos-help] micaZ error

2008-12-03 Thread Michael Schippling
Make sure you have the right port name... it's the COMN-1. Also check the power to the MIB and the connection to the micaz. MS MaHa wrote: Hi, I have problem in programming micaZ I got Programmer is not responding error when I tried to install Blink onto a micaZ [EMAIL PROTECTED]

[Tinyos-help] Micaz Voltage Monitor

2008-10-21 Thread Lauro Américo
I would like to know if there is a way to monitor the voltage of the micaz nodes. In the MPR2400CA manual it's said that there's a component, called VoltageM.nc, that can do this, but i can't find in the TinyOS2.x directories. Is this a component of the TinyOS1.x? Was it removed from the

Re: [Tinyos-help] Micaz Voltage Monitor

2008-10-21 Thread Razvan Musaloiu-E.
Hi! On Tue, 21 Oct 2008, Lauro Américo wrote: I would like to know if there is a way to monitor the voltage of the micaz nodes. In the MPR2400CA manual it's said that there's a component, called VoltageM.nc, that can do this, but i can't find in the TinyOS2.x directories. Is this a component

[Tinyos-help] micaz-installer

2008-07-15 Thread xuanwang150
Hi, Does this directory: http://www.tinyos.net/dist-1.1.0/tinyos/windows/ micaz-installer/ means that we can make Micaz mote work on TinyOS 1.1.0? what micaz-installer is about? Thanks yours

[Tinyos-help] MicaZ and SP03 synthesizer

2008-07-14 Thread Asier Arruti
Hi all, I am using the SP03 text-to-speech synthesizer and I want to control it with the MicaZ mote. The possible ways are UART and I2C communications. I want to use the UART option, but the speed must be 38400 bauds, which does not appear as a possible speed to be selected . Is it possible

Re: [Tinyos-help] MicaZ and SP03 synthesizer

2008-07-14 Thread Michael Schippling
According to my reading of the Examples of Baud Rate Setting, Table 82 in the version of the ATMEGA manual that I have, the UBRR value should be somewhere between 1 and 5, depending on the crystal used and a divider setting. Not 23 as you have... I don't have the will power to look up what crystal

Re: [Tinyos-help] micaZ radio not working with mts300 light sensor

2008-07-09 Thread Philip Levis
On Jul 8, 2008, at 12:45 AM, Tahir Azim wrote: I mean that the radio is unable to transmit any packets while the PhotoC component is wired into the configuration. When I unwire the PhotoC component, the radio starts working perfectly. More details would be helpful. Unable to transmit packets

Re: [Tinyos-help] micaZ radio not working with mts300 light sensor

2008-07-08 Thread Tahir Azim
I mean that the radio is unable to transmit any packets while the PhotoC component is wired into the configuration. When I unwire the PhotoC component, the radio starts working perfectly. Tahir. On 7/8/08, Philip Levis [EMAIL PROTECTED] wrote: On Jul 7, 2008, at 12:45 PM, Tahir Azim wrote:

Re: [Tinyos-help] micaZ radio not working with mts300 light sensor

2008-07-08 Thread Tahir Azim
I managed to run the radio with the MTS300 light sensor by checking out an entirely new tinyos 2.x source tree from CVS, and compiling my application with the new source tree. Simply upgrading the tos/sensorboards/mts300 directory and making the changes I mentioned earlier were just not working.

[Tinyos-help] micaZ radio not working with mts300 light sensor

2008-07-07 Thread Tahir Azim
Hi, I am trying to get the light sensor of an MTS300 sensorboard (I think its CB as it has the green wire at the back) to work with a micaZ mote. I started from the tinyos 2.0.0 release code, but couldnt get it to work. So I copied over the tos/sensorboards/mts300/* files from the tinyos 2.0.2

Re: [Tinyos-help] micaZ radio not working with mts300 light sensor

2008-07-07 Thread Philip Levis
On Jul 7, 2008, at 12:45 PM, Tahir Azim wrote: Hi, I am trying to get the light sensor of an MTS300 sensorboard (I think its CB as it has the green wire at the back) to work with a micaZ mote. I started from the tinyos 2.0.0 release code, but couldnt get it to work. So I copied over

[Tinyos-help] Micaz - the maximum payload of a radio package?

2008-07-03 Thread Javier Zazo
Hi! When trying to send more than 29 bytes, by specifying TOS_MSG = 50 at compile time (it is explained here: http://mail.millennium.berkeley.edu/pipermail/tinyos-help/2006-February/014814.html) it works fine. I have tried larger payloads to find tinyos limits... It seems to work for 70 Bytes of

[Tinyos-help] MicaZ tasks issue

2008-06-26 Thread echubb
Hi There I'm working on an nesC program as part of a university thesis at the moment, where the program samples the temperature and humidity sensors from an MTS420 sensorboard attached to a MicaZ mote. The mote then forwards the readings on to any others in its proximity, while accepting

[Tinyos-help] MICAz/TinyOS inputs and outputs question?

2008-05-25 Thread Kalin Trifonov
Greetings, My name is Kalin Trifonov. I am a student in Waseda University in Tokyo, Japan and have recently bought some MICAz motes from Crossbow Japan. I made an inquiry with Crossbow and they advised me to email the TinyOS community for assistance. Here is my problem: I need to use 4 outputs

Re: [Tinyos-help] MICAz/TinyOS inputs and outputs question?

2008-05-25 Thread Michael Schippling
Any controller pin can be used as an input or output. Some also have other functions, like ADCs. To use a pin as a digital output, here's my message from some ages ago: ... in T1 TOSH_SET_##pin##_PIN is a macro generated macro so you will never find it in the source. I unearthed the location

Re: [Tinyos-help] Micaz and Transmit Power

2008-05-12 Thread Yiannis Yiakoumis
Apparently I haven't looked so carefully in p.52 of cc2420 datasheet.. Yiannis Yiannis Yiakoumis wrote: Hi all, I want to change the transmission power of micaz. When setting the value for transmit power through Command (java), does this correspond to the absolute value in dBm?

[Tinyos-help] Micaz and Transmit Power

2008-05-10 Thread Yiannis Yiakoumis
Hi all, I want to change the transmission power of micaz. When setting the value for transmit power through Command (java), does this correspond to the absolute value in dBm? Thanks, Yiannis ___ Tinyos-help mailing list

[Tinyos-help] MicaZ - UART and SPI conflicts (both receiving at the same time)

2008-04-25 Thread Damian
Hi, We have a problem with the MicaZ. The controller of the mote, ATMega 128 L, has the SPI and UART0 linked. We want to use the radio (conected to SPI) and the serial (UART0) at the same time. But we think that there can be conflicts with the signals because of that linking, in case that you

  1   2   3   >