Yahoo Groups archive

AVR-Chat

Index last updated: 2026-04-28 22:41 UTC

Messages

Browse messages

Page 20 of 307 · 15341 messages matched

Re: [AVR-Chat] Source Control/Version Control for AVR projects

2011-10-25 by Brian Dean

Hi Chuck, We've been very happy with good old CVS. All of our AVR development projects, among many others, are under CVS control. We do frequent backups of the repository, and the repo is composed of a simple directory structure of flat files so it is easy to do a complete backup

Thread view Attachments: 0

Re: [AVR-Chat] Source Control/Version Control for AVR projects

2011-10-24 by David Kelly

On Tue, Oct 25, 2011 at 10:01:41AM +1300, Alex Shepherd wrote: > > Try Tortoise SVN and work in a DropBox folder. > > I would strongly recommend the Subversion system and the Tortoise SVN > Client software. You do NOT have to have a remote server as you can > actually run a local

Thread view Attachments: 0

RE: [AVR-Chat] Source Control/Version Control for AVR projects

2011-10-24 by Alex Shepherd

> Try Tortoise SVN and work in a DropBox folder. I would strongly recommend the Subversion system and the Tortoise SVN Client software. You do NOT have to have a remote server as you can actually run a local SVN repository on your PC if necessary. You can then backup that reposit

Thread view Attachments: 0

Re: Source Control/Version Control for AVR projects

2011-10-24 by Brian Dean

Hi Chuck, I've been very happy with good old CVS. All of our AVR development projects, among many others, are under CVS control. We do frequent backups of the repository, and the entire repo can even fit on a thumb drive to carry with you if need be for a little extra peace of mi

Thread view Attachments: 0

Re: [AVR-Chat] Hello and Question

2011-10-24 by John Samperi

At 03:59 PM 24/10/2011, you wrote: >I had soldered the leads from a usb-rs232 >patch originally and it seems to be fine but I don't have a good way to >debug it. And did you connect the DTR (or whichever the board is supposed to use) to the reset pin of the AVR via a 100nF cap? R

Thread view Attachments: 0

RE: [AVR-Chat] Source Control/Version Control for AVR projects

2011-10-24 by Cat C

Try Tortoise SVN and work in a DropBox folder. Good luck, Cat > To: AVR-Chat@yahoogroups.com > From: egroupscdh@up844.us > Date: Mon, 24 Oct 2011 11:51:19 -0500 > Subject: [AVR-Chat] Source Control/Version Control for AVR projects > > One of my AVR projects has grown to a signifi

Thread view Attachments: 0

Source Control/Version Control for AVR projects

2011-10-24 by Chuck Hackett

One of my AVR projects has grown to a significant number of files and complexity. I also need to track multiple versions installed in the field, multiple development/bug fix lines, etc. so I'm looking for a Source/Version Control package to manage it. This is for single developer

Thread view Attachments: 0

Re: Source Control/Version Control for AVR projects

2011-10-24 by greggy

Hi As you've already checked AVRFreaks, you've probably already seen this, but I'll post you the link just in case. http://www.avrfreaks.net/index.php?name=PNphpBB2&file=viewtopic&t=109010&highlight=source+control --- In AVR-Chat@yahoogroups.com, Cat C wrote: > > > Try Tortoise S

Thread view Attachments: 0

Re: [AVR-Chat] Hello and Question

2011-10-24 by John Crouchley

There are different Arduino boot loaders, these are selected in the Arduino IDE by selecting the board type (Tools -> Board). It may be that you have simply selected the wrong one for your AVR chip. I suggest that if you have selected "Arduino Uno" you try the next one down "Ardu

Thread view Attachments: 0

Re: [AVR-Chat] Hello and Question

2011-10-24 by Matthew Metzger

Thanks, Dave! I will do all of those. I also bought a better pre-fab 232 breakout board today which will be delivered. I had soldered the leads from a usb-rs232 patch originally and it seems to be fine but I don't have a good way to debug it. So, assuming whatever I buy should wo

Thread view Attachments: 0

Re: [AVR-Chat] Hello and Question

2011-10-24 by Matthew Metzger

No, I am sorry. It's just a regular breadboard. I bought the chips with the Arduino bootloader installed from SparkFun. I have other Arduino stuff though and would definitely recommend the prefabricated boards if you're considering buying one. On Mon, Oct 24, 2011 at 12:49 AM, Jo

Thread view Attachments: 0

Re: [AVR-Chat] Hello and Question

2011-10-24 by John Samperi

At 05:08 AM 24/10/2011, you wrote: >I am trying to write code to an Atmega chip with the >Arduino bootloader Is this a real Arduino board or did you build it yourself? And for a silly question: If the later did you program the boot-loader into the chip or did you buy a chip with

Thread view Attachments: 0

RE: [AVR-Chat] Hello and Question

2011-10-24 by Dave McLaughlin

Hi Matt, My first thought looking at your image is that you have no capacitors fitted to the crystal circuit so you may have an unstable internal reference which may affect the baud rate. With the 16Mhz crystal I would suggest you put in a 22pF cap between each crystal pin and GN

Thread view Attachments: 0

Re: [AVR-Chat] Re: Basic question about breadboards

2011-10-23 by Jim Wagner

No, the internal pullups are just a little too large. The issue is speed. The clock and data rise times are entirely set by line capacitance and resistor value. If you are willing to run slower than maximum speed, then you probably could manage with the internal pullups. Jim Wagn

Thread view Attachments: 0

Re: [AVR-Chat] Re: Basic question about breadboards

2011-10-23 by tim gilbert

That depends, if you're writing all your own code you could make it work but if you're using any standard I2C parts you will almost certainly need the 3.9K resistors to meet the timing. Regards, Tim Gilbert JEM Innovation Inc. 303-926-9053 (office) 303-437-4342 (cell) www.jeminno

Thread view Attachments: 0

Re: [AVR-Chat] Basic question about breadboards

2011-10-23 by Philippe Habib

If you must use I2C for some reason, you can get some range extender chips that will let you go for 10s of Meters. ----- Original Message ----- From: "Dave McLaughlin" To: AVR-Chat@yahoogroups.com Sent: Saturday, October 22, 2011 8:14:27 PM Subject: RE: [AVR-Chat] Basic question

Thread view Attachments: 0

Re: Basic question about breadboards

2011-10-23 by jstockma

Thanks, woulf the internal pulls ups be sufficient? My design includes external pull up resistors. John Stockman --- In AVR-Chat@yahoogroups.com, "tim gilbert" wrote: > > You probably don't need to run off the same power supply but, if by 'two wire' you mean I2C-like, then you do

Thread view Attachments: 0

Re: Basic question about breadboards

2011-10-23 by jstockma

Thanks, Yes, it is the I2C interface that I am trying to impliment. I do not have a specific application in mind. Right now I am at the point where I am learning C programming for the AVR on AVR Studio 5 and I am learning about the various AVR AT Mega chip's features. I am writin

Thread view Attachments: 0

Hello and Question

2011-10-23 by Matthew Metzger

Hello. I am new to the group and an am an amateur in the electronics field. I am looking forward to learning and participating. That having been said, I am trying to write code to an Atmega chip with the Arduino bootloader I've done this before with similar chips with different b

Thread view Attachments: 0

Re: [AVR-Chat] Basic question about breadboards

2011-10-23 by tim gilbert

You probably don't need to run off the same power supply but, if by 'two wire' you mean I2C-like, then you do need the same ground (and don't forget the pull up resistors). There's no reason this won't work on a breadboard using DIP components. Been there done that (probably befo

Thread view Attachments: 0

Re: Basic question about breadboards

2011-10-23 by Andrew Mathison (Alice)

Fo9r old or young, experienced and inexperienced, Breadboards are a great way to develop and test something. What I don't agree with is the statement that you MUST have the same power and grounds. Proper design will allow this to be partly or completely ignored. Let us know just

Thread view Attachments: 0

RE: [AVR-Chat] Basic question about breadboards

2011-10-23 by Dave McLaughlin

They can have separate supplies if you need this capability. You just need to connect the GND of each to get a common voltage point. Use the same voltage of supply at each board and use good decoupling at the power entry points of the board and close to the processor power pins.

Thread view Attachments: 0

Re: [AVR-Chat] Basic question about breadboards

2011-10-23 by bobgardner@aol.com

Just run a wire from the 5V bus and the Gnd bus on the first breadboard to the second breadboard. Each should have a Big Electrolytic and a couple of .1 caps. -----Original Message----- From: jstockma To: AVR-Chat Sent: Sat, Oct 22, 2011 10:32 pm Subject: [AVR-Chat] Basic questio

Thread view Attachments: 0

Basic question about breadboards

2011-10-21 by jstockma

I am a AVR hobbyist and I am currently working on a project to design and program a two wire interface between to Mega AVRs in which one would send instructions to the second directing certain tasks. I have the software side of it well underway but I am having doubts about the ha

Thread view Attachments: 0

RE: [AVR-Chat] OCDEN Fuse (minor rant)

2011-10-13 by Phillip Vogel

> -----Original Message----- > From: AVR-Chat@yahoogroups.com [mailto:AVR-Chat@yahoogroups.com] On > Behalf Of Clark Martin > Sent: Thursday, October 13, 2011 12:41 PM > To: AVR-Chat@yahoogroups.com > Subject: Re: [AVR-Chat] OCDEN Fuse (minor rant) > > > On Oct 13, 2011, at 8:56

Thread view Attachments: 0

Re: [AVR-Chat] OCDEN Fuse (minor rant)

2011-10-13 by Clark Martin

On Oct 13, 2011, at 8:56 AM, Phillip Vogel wrote: > > I've been scratching my head for a while, trying to figure out why a Mega644PA was drawing something over 1.6mA while in SLEEP_MODE_PWR_DOWN. I had all the fuses set, all the peripherals disabled, all the ports set to draw the

Thread view Attachments: 0

OCDEN Fuse (minor rant)

2011-10-13 by Phillip Vogel

I've been scratching my head for a while, trying to figure out why a Mega644PA was drawing something over 1.6mA while in SLEEP_MODE_PWR_DOWN. I had all the fuses set, all the peripherals disabled, all the ports set to draw the least current. The chip looked like it was going to s

Thread view Attachments: 0

Re: [AVR-Chat] Setting PWM period

2011-10-11 by Philippe Habib

Sorry, I'm using at ATMEGA48. ----- Original Message ----- From: "Clark Martin" To: AVR-Chat@yahoogroups.com Sent: Monday, October 10, 2011 9:15:56 PM Subject: Re: [AVR-Chat] Setting PWM period On Oct 10, 2011, at 8:34 PM, Philippe Habib wrote: It would help if you listed the pro

Thread view Attachments: 0

Re: [AVR-Chat] Monitoring 4 wire fans

2011-10-11 by David Kelly

On Oct 11, 2011, at 6:26 AM, H. Carl Ott wrote: > You don't mention which AVR you want to use. It also appears that you > don't care about the speed, just the fact that the fan is spinning. > > Anyhow, I'd just use a simple pin change interrupt if it was available. > Set a flag b

Thread view Attachments: 0

Re: Monitoring 4 wire fans

2011-10-11 by brianafuk

> What are some other ways I can monitor these things with minimal overhead? > Resistor and capacitor as a simple LPF feeding an IO pin?

Thread view Attachments: 0

Re: [AVR-Chat] Monitoring 4 wire fans

2011-10-11 by H. Carl Ott

On Mon, Oct 10, 2011 at 10:49 PM, Philippe Habib wrote: > ** > > > I have a bunch of 4 wire fans to monitor. These are fans that take a PWM > input for speed, and have a tach output in the form of a square wave with a > frequency proportional to speed. A stopped fan puts out a co

Thread view Attachments: 0

Re: [AVR-Chat] Setting PWM period

2011-10-11 by Clark Martin

On Oct 10, 2011, at 9:11 PM, Jim Wagner wrote: > > On Oct 10, 2011, at 8:34 PM, Philippe Habib wrote: > >> Thanks to all of the help I got a couple of weeks ago with timers, I >> have been able to get my PWM stuff (mostly) working. >> >> I assume it is possible to tune the PWM pe

Thread view Attachments: 0

Re: [AVR-Chat] Setting PWM period

2011-10-11 by Clark Martin

On Oct 10, 2011, at 8:34 PM, Philippe Habib wrote: It would help if you listed the processor in use. Without that we can't know what the settings mean. > Thanks to all of the help I got a couple of weeks ago with timers, I have been able to get my PWM stuff (mostly) working. > >

Thread view Attachments: 0

Re: [AVR-Chat] Setting PWM period

2011-10-11 by Jim Wagner

On Oct 10, 2011, at 8:34 PM, Philippe Habib wrote: > Thanks to all of the help I got a couple of weeks ago with timers, I > have been able to get my PWM stuff (mostly) working. > > I assume it is possible to tune the PWM period beyond the blunt > instrument of the div by register

Thread view Attachments: 0

Setting PWM period

2011-10-11 by Philippe Habib

Thanks to all of the help I got a couple of weeks ago with timers, I have been able to get my PWM stuff (mostly) working. I assume it is possible to tune the PWM period beyond the blunt instrument of the div by registers but I don't see how to do it. Here are my settings, which g

Thread view Attachments: 0

Monitoring 4 wire fans

2011-10-11 by Philippe Habib

I have a bunch of 4 wire fans to monitor. These are fans that take a PWM input for speed, and have a tach output in the form of a square wave with a frequency proportional to speed. A stopped fan puts out a constant low. At low speed, the period is about 80ms, at full speed, abou

Thread view Attachments: 0

Message 14346

2011-10-10 by I Banerjee

Be a real man! Have a non-stop sex during the night!.. http://www.superfreios.com.br/com.page.php?xjhot=85sj6

Thread view Attachments: 0

Re: [AVR-Chat] More timer confusion

2011-09-28 by Clark Martin

On Sep 28, 2011, at 6:47 AM, Jim Wagner wrote: > What is your system clock? > > Jim Wagner > > On Sep 27, 2011, at 10:41 PM, Philippe Habib wrote: > >> As it turned out, I need timer 0 to run PWM on a pin so I have to >> use timer 1 for my timer tick. >> >> Using what I learned f

Thread view Attachments: 0

Re: [AVR-Chat] More timer confusion

2011-09-28 by Philippe Habib

I should have said. I am using the internal 8M oscillator using these fuse settings: FUSES = { .low = (FUSE_CKSEL1 & FUSE_SUT1) , .high = (FUSE_BODLEVEL1 & FUSE_EESAVE & FUSE_SPIEN), .extended = EFUSE_DEFAULT, }; ----- Original Message ----- From: "Jim Wagner" To: AVR-Chat@yahoog

Thread view Attachments: 0

Re: [AVR-Chat] More timer confusion

2011-09-28 by Jim Wagner

What is your system clock? Jim Wagner On Sep 27, 2011, at 10:41 PM, Philippe Habib wrote: > As it turned out, I need timer 0 to run PWM on a pin so I have to > use timer 1 for my timer tick. > > Using what I learned from timer 0, I was hoping it would be easy to > generate a 10ms

Thread view Attachments: 0

Re: [AVR-Chat] More timer confusion

2011-09-28 by R E Purcella

1) your code TCCR1A = (0 > As it turned out, I need timer 0 to run PWM on a pin so I have to use > timer 1 for my timer tick. > > Using what I learned from timer 0, I was hoping it would be easy to > generate a 10ms tick using timer 1. > > Here is my setup: > > TCCR1A = (0 TCCR1B

Thread view Attachments: 0

More timer confusion

2011-09-28 by Philippe Habib

As it turned out, I need timer 0 to run PWM on a pin so I have to use timer 1 for my timer tick. Using what I learned from timer 0, I was hoping it would be easy to generate a 10ms tick using timer 1. Here is my setup: TCCR1A = (0

Thread view Attachments: 0

RE: [AVR-Chat] jtag ice mkII fried?

2011-09-27 by Steve Hodge

Thanks, John. However, I haven't a clue which one of the many chips it might be. Nothing looks fried. Steve From: AVR-Chat@yahoogroups.com [mailto:AVR-Chat@yahoogroups.com] On Behalf Of John Samperi Sent: Monday, September 26, 2011 7:52 PM To: AVR-Chat@yahoogroups.com Subject: Re

Thread view Attachments: 0

Re: [AVR-Chat] jtag ice mkII fried?

2011-09-27 by John Samperi

At 12:39 PM 27/09/2011, you wrote: >I think I just fried my (genuine Atmel) JTAG ICE MKII. It may just be the TVS protection chip which is located just behind the socket for the ribbon and easily replaceable, you can just unsolder it and see if it all works again. If it does get

Thread view Attachments: 0

jtag ice mkII fried?

2011-09-27 by Steve Hodge

I think I just fried my (genuine Atmel) JTAG ICE MKII. I accidentally pressed my target board microcontroller reset switch while I was in an active debugging session. Now AVR Studio will not recognize the programmer and I get all sorts of various "fail" messages. Not only that bu

Thread view Attachments: 0

Move to quarantaine

This moves the raw source file on disk only. The archive index is not changed automatically, so you still need to run a manual refresh afterward.