2004-12-24 by chris atwan
What do you mean by "How I can program mega64"? Do you need to know what kind of programmer or what kind of software? Chris Atwan Hamid reza Kabiri wrote: Hello How I can program mega64? Thanks for help me. Yahoo! Groups SponsorADVERTISEMENT --------------------------------- Yaho
Thread view
Attachments: 0
2004-12-24 by Leon Heller
----- Original Message ----- From: ethan@bufbotics.org To: avr-chat@yahoogroups.com Sent: Friday, December 24, 2004 5:56 PM Subject: [AVR-Chat] PB0 & PB2 on ATtiny26 Hello, I am trying to figure out from the ATtiny26 datasheet whether I can use PB0 & PB2 as I/O pins while using P
Thread view
Attachments: 0
2004-12-24 by Brian Dean
On Fri, Dec 24, 2004 at 07:25:07AM -0500, Phillip Vogel wrote: > Thanks - I got that yesterday afternoon on the avr-gcc list. This seems > like an inconsistency in the header files that should be fixed. Actually, the GCC header files merely follow the nomenclature in the datashee
Thread view
Attachments: 0
2004-12-24 by kiwanda206
--- In AVR-Chat@yahoogroups.com, "Hamid reza Kabiri" wrote: > Hello > > How I can program mega64? > Thanks for help me. Use avrdude, grat way to program any avr device. Ewout Boks
Thread view
Attachments: 0
2004-12-24 by Phillip Vogel
Thanks - I got that yesterday afternoon on the avr-gcc list. This seems like an inconsistency in the header files that should be fixed. Or, perhaps it's something that should be addressed by the preprocessor - giving warnings on undefined macros (though I have no idea how to impl
Thread view
Attachments: 0
2004-12-24 by Hamid reza Kabiri
Hello How I can program mega64? Thanks for help me.
Thread view
Attachments: 0
2004-12-24 by Paul Maddox
All, So, I found the problem last night, the clue was in this sentance. > Of the 7 parameters, 4 work perfectly, 3 don't seem to do the right thing, I > just get garbage instead of the correct value. I should've said, the first 3 don't work and the last 4 all do. BIT2 of my 3 bit
Thread view
Attachments: 0
2004-12-24 by Brian Dean
On Thu, Dec 23, 2004 at 03:40:20PM -0500, Phillip Vogel wrote: > This used to work, but since I upgraded winavr and changed to mega128 > (used to be mega162), my interrupt vector table is empty, like this: > SIGNAL(SIG_USART0_RECV) > SIGNAL(SIG_USART0_DATA) Change 'USART0' to 'UA
Thread view
Attachments: 0
2004-12-23 by Phillip Vogel
This used to work, but since I upgraded winavr and changed to mega128 (used to be mega162), my interrupt vector table is empty, like this: 00000000 : 0: 0c 94 6e 01 jmp 0x2dc 4: 0c 94 8b 01 jmp 0x316 8: 0c 94 8b 01 jmp 0x316 c: 0c 94 8b 01 jmp 0x316 10: 0c 94 8b 01 jmp 0x316 14:
Thread view
Attachments: 0
2004-12-23 by Mark Jordan
On 23 Dec 2004 at 15:45, fnatmed wrote: > > Has anyone done this ? I'm sure it's out there somewhere, just have > to find it. > For the DTMF decoding, I used this: http://www.embedded.com/story/OEG20020819S0057 For the BELL-202, this one: http://www.baycom.org/~tom/ham/da95/d_dsp
Thread view
Attachments: 0
2004-12-23 by fnatmed
--- In AVR-Chat@yahoogroups.com, "Mark Jordan" wrote: > On 23 Dec 2004 at 14:33, Kathy Quinlan wrote: > > > > > Chuck Hackett wrote: > > > > > > > > Sorry to continue this off topic but ... > > > > > > Mate this is not that off topic as it can be done with an AVR :) > > > > Any A
Thread view
Attachments: 0
2004-12-23 by Dave VanHorn
At 09:32 AM 12/23/2004, Paul Maddox wrote: >Leon, > > > Are you using the simulator? I use that to sort out out problems like >those > > you are having. > >It all works fine in the simulator, but then it always did, and I've found a >couple of bugs since :-) >I've had an idea it
Thread view
Attachments: 0
2004-12-23 by Dave VanHorn
At 08:40 AM 12/23/2004, Paul Maddox wrote: >Dear all, > > Daft question, I'm trying to setup a couple of IRQs (in assembly) and I'm >getting some odd results, here's the first part of my setup ;- > > LDI Temp, Low(Ramend) > OUT SPL, Temp ; setup stack pointer > > LDI Temp, High(R
Thread view
Attachments: 0
2004-12-23 by Paul Maddox
Dave, > If you have them set for low level, that might be quite significant :) The IRQs are set for falling edge. Its a simple 'network' with 5 of MEGA16s on, one controlling the other 4, all the PORTA pins of all 5 are tied together, I figured I wouldn't need pullups as there wo
Thread view
Attachments: 0
2004-12-23 by Paul Maddox
Leon, > Are you using the simulator? I use that to sort out out problems like those > you are having. It all works fine in the simulator, but then it always did, and I've found a couple of bugs since :-) I've had an idea it might be to do with the lack of pullups on the data in p
Thread view
Attachments: 0
2004-12-23 by Leon Heller
----- Original Message ----- From: Paul Maddox To: AVR-Chat@yahoogroups.com Sent: Thursday, December 23, 2004 2:11 PM Subject: Re: [AVR-Chat] Stack Leon, > What is GICR??? 'General Interupt Control register' > You need to set the top two bits in GIMSK, then execute SEI. Make sure
Thread view
Attachments: 0
2004-12-23 by Paul Maddox
Leon, > What is GICR??? 'General Interupt Control register' > You need to set the top two bits in GIMSK, then execute SEI. Make sure you > have the vectors initialised correctly. I've got the SEI, and I think the IRQ vectors are ok, the GICR register is the new version of GIMSK,
Thread view
Attachments: 0
2004-12-23 by Paul Maddox
Dave, > What's the chip?? sorry, I should've said. MEga16 > What's your vector table look like? fairly straight forward ;- .ORG RESET RJMP INIT .ORG INT0addr RJMP READPORTS .ORG INT1addr RJMP SYNC > I've seen some systems that only partially fill the vector table, but I > really
Thread view
Attachments: 0
2004-12-23 by Leon Heller
----- Original Message ----- From: Paul Maddox To: AVR-Chat@yahoogroups.com Sent: Thursday, December 23, 2004 1:40 PM Subject: [AVR-Chat] Stack Dear all, Daft question, I'm trying to setup a couple of IRQs (in assembly) and I'm getting some odd results, here's the first part of m
Thread view
Attachments: 0
2004-12-23 by Paul Maddox
Dear all, Daft question, I'm trying to setup a couple of IRQs (in assembly) and I'm getting some odd results, here's the first part of my setup ;- LDI Temp, Low(Ramend) OUT SPL, Temp ; setup stack pointer LDI Temp, High(Ramend) OUT SPH, Temp ; **** setup IRQs LDI Temp, 0b00001010
Thread view
Attachments: 0
2004-12-23 by Mark Jordan
On 23 Dec 2004 at 14:33, Kathy Quinlan wrote: > > Chuck Hackett wrote: > > > > > Sorry to continue this off topic but ... > > > Mate this is not that off topic as it can be done with an AVR :) > Any AVR with internal ADC can decode DTMF or BELL-202 Caller ID info. It is just a ma
Thread view
Attachments: 0
2004-12-23 by Kathy Quinlan
Chuck Hackett wrote: > > Sorry to continue this off topic but ... Mate this is not that off topic as it can be done with an AVR :) -- --------------------------------------------------------------- K.A.Q. Electronics Website: www.kaqelectronics.dyndns.org IM: Yahoo: PinkyDwaggy M
Thread view
Attachments: 0
2004-12-23 by Chuck Hackett
> From: stevech > > cell phones' caller ID is done as digital data on the control > channel - which is where calls are initiated and paging > (ring) messages happen, plus handoff coordination. Sorry to continue this off topic but ... I've always wondered why land line phones Call
Thread view
Attachments: 0
2004-12-23 by stevech
cell phones' caller ID is done as digital data on the control channel - which is where calls are initiated and paging (ring) messages happen, plus handoff coordination. -----Original Message----- From: fnatmed [mailto:fnatmed@yahoo.com] Sent: Tuesday, December 21, 2004 4:35 PM To
Thread view
Attachments: 0
2004-12-23 by David Rea
Since you're stuck with an optical sensor, let's look at what we can do with infrared. I have a product at work that uses an infrared sensor that I designed. It uses an Osram SFH426 infrared LED and a PD100MF0MP visible-light-cutoff photodiode. The photodiode's resin doesn't let
Thread view
Attachments: 0
2004-12-23 by fnatmed
Wow. AVRFreaks.net is still down for "maintenance". Anyone actually know anything about what's going on ? I'm sure it's updates thanks to the new exploits that are out there, but has anyone actually heard from Eivind ? D.
Thread view
Attachments: 0
2004-12-22 by John Samperi
At 06:48 PM 22/12/04 -0000, you wrote: >Is this too difficult of a starting project with the AVR? I would say it is a bit difficult with any processor. >> For my first AVR project, I would like to build a small digital >voice >> recorder with a tiny radio-remote control. There is
Thread view
Attachments: 0
2004-12-22 by Robert Adsett
At 04:00 PM 12/22/04 +0000, you wrote: >...maybe it helps if the original Poster (KC?) has a look at >http://www.joliettech.com/ac_motor_control_characteristics.htm where >they show the waveform of a PWM inverter. Nice diagram, thanks for the link. Robert " 'Freedom' has no meani
Thread view
Attachments: 0
2004-12-22 by Edson L. Bestvina
Mr. Parwani See attached file... Edson -----Mensagem original----- De: rajesh parwani [mailto:rajesh_almighty@yahoo.co.in] Enviada em: quarta-feira, 22 de dezembro de 2004 15:51 Para: AVR-Chat@yahoogroups.com Assunto: Re: [AVR-Chat] sensors... hey the barrier is wooden plank . bu
Thread view
Attachments: 0
2004-12-22 by rajesh parwani
hey the barrier is wooden plank . but the prblem is that when the barrier is away more than 3 cm it shopuldnt detect. well there is a way of adjusting that using pot but that doesnt work for changing ambient light. both the detector and transmitter will be fixed on same plane "Da
Thread view
Attachments: 0
2004-12-22 by honamos@yahoo.com
Is this too difficult of a starting project with the AVR? Shamoon --- In AVR-Chat@yahoogroups.com, honamos@y... wrote: > > Hey Tony, > For my first AVR project, I would like to build a small digital voice > recorder with a tiny radio-remote control. Suggestions on how to get > st
Thread view
Attachments: 0
2004-12-22 by rajesh parwani
well that is too heavy and not compact not only that it has too be low powered and availability in mumbai, india is of most imp thanks Brian Dean wrote: On Wed, Dec 22, 2004 at 10:09:57AM +0000, rajesh parwani wrote: > thanks for replying . it would be a privelege if u can send m
Thread view
Attachments: 0
2004-12-22 by rajesh parwani
well that is too heavy and not compact not only that it has too be low powered thanks Brian Dean wrote: On Wed, Dec 22, 2004 at 10:09:57AM +0000, rajesh parwani wrote: > thanks for replying . it would be a privelege if u can send me some > circuit to do that as cost is not a fact
Thread view
Attachments: 0
2004-12-22 by peterman921
Can anyone point me to where I can find .xml files for the AT90S1200A-4PC. I'm trying to teach myself how to write programs in assembler and I found out that apparently this file is not included with avr studio, so I am having some difficulty in setting up my project Jon
Thread view
Attachments: 0
2004-12-22 by robert moro
Rajesh, Check out the IS471F: http://www.junun.org/MarkIII/datasheets/IS471F.pdf It is an optical solution, but it is not that sensitive to ambient light because the light send is modulated and the light received is filtered by the IS471F. The circuit is very simple: you only nee
Thread view
Attachments: 0
2004-12-22 by Brian Dean
On Wed, Dec 22, 2004 at 10:09:57AM +0000, rajesh parwani wrote: > thanks for replying . it would be a privelege if u can send me some > circuit to do that as cost is not a factor If cost, as you say, is not a factor, you might try a SICK LADAR, something like the LMS 291: http://
Thread view
Attachments: 0
2004-12-22 by Stefan Wimmer
--- In AVR-Chat@yahoogroups.com, Robert Adsett wrote: >... > > I do understand this. However, the switching frequency and the drive > frequency do not need to be the same. Remember that the motor is > essentially acting as a low pass filter. I'd rather see a MUCH higher > switchi
Thread view
Attachments: 0
2004-12-22 by D. Daniel McGlothin
Similar to another suggestion, you might take a look at http://thereminvision.com/ , and then follow the link to the 2nd version. I've not actually used one of these sensors, although I'm familiar with the musical instrument. Daniel -----Original Message----- From: rajesh parwani
Thread view
Attachments: 0
2004-12-22 by Gert Mueller
Kathy Quinlan wrote: > Elektor also publishes in english :) > Regards, > Kat. Yea - even their website offers an english section - just click ".uk" - I must have been sort of blind :o) Regards, Gert
Thread view
Attachments: 0
2004-12-22 by Kathy Quinlan
Gert Mueller wrote: > Hi Rajesh, > > in the recent issue of the german elektronics magazin > ELEKTOR you'll find an article discussing exactly > that subject. They have some datasheets of suitable > sensors, schematic (+layout) for an ultrasonic distance > meter and even AVR cont
Thread view
Attachments: 0
2004-12-22 by David D. Rea
What is the barrier material? If it is metallic, a simple damped LC tank circuit could easily handle hi friends, > im searching for the sensors which can detect barrier > at a distance of upto 3 cm and not more . well my working > condition have lot of ambient light . i would pre
Thread view
Attachments: 0
2004-12-22 by Gert Mueller
Hi Rajesh, in the recent issue of the german elektronics magazin ELEKTOR you'll find an article discussing exactly that subject. They have some datasheets of suitable sensors, schematic (+layout) for an ultrasonic distance meter and even AVR controller software - written in C. Th
Thread view
Attachments: 0
2004-12-22 by Edson L. Bestvina
Rajesh Try to use BPW32 (photodiode Osram) it is immune to ambient light . Edson -----Mensagem original----- De: rajesh parwani [mailto:rajesh_almighty@yahoo.co.in] Enviada em: quarta-feira, 22 de dezembro de 2004 07:58 Para: AVR-Chat@yahoogroups.com Assunto: [AVR-Chat] sensors..
Thread view
Attachments: 0
2004-12-22 by Andrew Lim
Hi Raj, I dun hav the circuit with me. I remember having the similar issue in AVR Chat and a gentlemen gave a website about this. Sorry I forgot his name but perhaps anyone here can help. Regards, Andrew rajesh parwani wrote: hi andy , thanks for replying . it would be a priveleg
Thread view
Attachments: 0
2004-12-22 by rajesh parwani
hi andy , thanks for replying . it would be a privelege if u can send me some circuit to do that as cost is not a factor Andrew Lim wrote: Hi Raj, Since u have lots of ambient light in ur working condition, I suggest u use ultrasonic which will solve ur problem. Since u only need
Thread view
Attachments: 0
2004-12-22 by Andrew Lim
Hi Raj, Since u have lots of ambient light in ur working condition, I suggest u use ultrasonic which will solve ur problem. Since u only need to control the distant at 3cm. Ultrasonic will be a good solution. However, I guess using ultrasonic will be at the expensive side in term
Thread view
Attachments: 0
2004-12-22 by rajesh parwani
hi friends, im searching for the sensors which can detect barrier at a distance of upto 3 cm and not more . well my working condition have lot of ambient light . i would prefer to fix the setting once for any lighting so that need not change it from place to place. please suggest
Thread view
Attachments: 0
2004-12-22 by Dave VanHorn
It's Bell 202 FSK. Any 202 modem chip should work, if you have a clean interface to pull the audio out.
Thread view
Attachments: 0
2004-12-22 by Bruce Parham
fnatmed wrote: > > --- In AVR-Chat@yahoogroups.com, "Greg Koss" wrote: > > > > Hi All, > > > > To deviate from the main topic a bit, I am looking for a source of > > Caller ID chips. I would rather work with the HT9032 series or the > > MC14LC5447. I can not find a source of thes
Thread view
Attachments: 0
2004-12-21 by fnatmed
--- In AVR-Chat@yahoogroups.com, "Greg Koss" wrote: > > Hi All, > > To deviate from the main topic a bit, I am looking for a source of > Caller ID chips. I would rather work with the HT9032 series or the > MC14LC5447. I can not find a source of these chips that is within > the pr
Thread view
Attachments: 0