2008-02-16 by Graham Davies
--- In AVR-Chat@yahoogroups.com, "majid_pow" wrote: > i have an avr programmer but it > connects to computer via DB-25 ... Is it a parallel programmer? In other words, it is expecting the DB-25 to be a parallel printer port? If so, I don't thing there's a solution for you. You'll
Thread view
Attachments: 0
2008-02-16 by Tom
James Wagner wrote: > > But, if you DON'T do that, is your code recognized? > > Jim > no
Thread view
Attachments: 0
2008-02-15 by John Samperi
At 07:36 AM 16/02/2008, you wrote: >When will the STK600 be released to distributors? Rumors anyone? I have had a good rumor that it will be "one of these days". The rumor has been consistent for the past couple of years so it must be true...... Regards John Samperi *************
Thread view
Attachments: 0
2008-02-15 by Rusty
When will the STK600 be released to distributors? Rumors anyone? Rusty [Non-text portions of this message have been removed]
Thread view
Attachments: 0
2008-02-15 by Stefan Wimmer
--- In AVR-Chat@yahoogroups.com, "khahramon0786" wrote: > > // i need 40Khz signal in PORTA.0, that's way i took 80kHz interrupt > TCNT1=0x10000-(xtal/1/(2*hz)); Shouldn't that be TCNT1=0x10000-(xtal/(1/(2*hz))); ??
Thread view
Attachments: 0
2008-02-15 by James Wagner
But, if you DON'T do that, is your code recognized? Jim On Feb 15, 2008, at 4:35 AM, Tom wrote: > Jim: Yes, I forgot to mention that. I did that deliberately. The > assembler is NOT noticing that! > > avrFreak > > James Wagner wrote: > > > > There are two START labels! > > > > Ji
Thread view
Attachments: 0
2008-02-15 by bhadson2001
i am recieving data from serial port of PC to AVR. sometimes controller recieve data different. i am using 4 byte frame to recognize a particular command. sometimes it picks up different command. what will i do to solve the problem. kindly help me.
Thread view
Attachments: 0
2008-02-15 by Khahramon Nuriddinov
yes, i'm sure about that! I'm sending you my CodeVersionAVR , VMLAB and Proteus project version! John Samperi wrote: At 03:11 PM 14/02/2008, you wrote: >Clock frequency : 4,000000 MHz > >/*********************************** >Can you help me where's my mistake Is your clock REALLY
Thread view
Attachments: 0
2008-02-15 by Tom
Jim: Yes, I forgot to mention that. I did that deliberately. The assembler is NOT noticing that! avrFreak James Wagner wrote: > > There are two START labels! > > Jim > > On Feb 14, 2008, at 2:11 PM, Tom wrote: > > > I am confounded and flummoxed. I have an assembly program I am >
Thread view
Attachments: 0
2008-02-15 by majid_pow
i have an avr programmer but it connects to computer via DB-25 and my computer doesn't have DB-25.How can i connect this programmer to usb or com ? how can i chage DB-25 to DB-9 or usb?THANKS
Thread view
Attachments: 0
2008-02-14 by John Samperi
At 09:26 AM 15/02/2008, you wrote: >There are two START labels! > > > START: > > > > ldi SPL, SRAM_START ; load stack pointer Not to mention that the program will crash the first time you use the stack. Try using ramend. Regards John Samperi **************************************
Thread view
Attachments: 0
2008-02-14 by David VanHorn
Indeed there are, the asm should have caught that. Also, the reset int vector should be on top of the list, with "rjmp start" So it would look like this: reset: rjmp Start (rest of int vector table etc) Start: Init code goes here Main App code goes here rjmp main On Thu, Feb 14,
Thread view
Attachments: 0
2008-02-14 by James Wagner
There are two START labels! Jim On Feb 14, 2008, at 2:11 PM, Tom wrote: > I am confounded and flummoxed. I have an assembly program I am > attempting to build in AVRStudio, but the assembler is ignoring my > code. I don't get it. I have compared it to other code I have which > as
Thread view
Attachments: 0
2008-02-14 by David VanHorn
Also, I didn't see a .dseg, but you might not need one.
Thread view
Attachments: 0
2008-02-14 by David VanHorn
On Thu, Feb 14, 2008 at 5:11 PM, Tom wrote: > I am confounded and flummoxed. I have an assembly program I am > attempting to build in AVRStudio, but the assembler is ignoring my > code. I don't get it. I have compared it to other code I have which > assembles just fine, and can f
Thread view
Attachments: 0
2008-02-14 by Tom
I am confounded and flummoxed. I have an assembly program I am attempting to build in AVRStudio, but the assembler is ignoring my code. I don't get it. I have compared it to other code I have which assembles just fine, and can find no difference which explains this behaviour. The
Thread view
Attachments: 0
2008-02-14 by John Samperi
At 03:11 PM 14/02/2008, you wrote: >Clock frequency : 4,000000 MHz > >/*********************************** >Can you help me where's my mistake Is your clock REALLY 4MHz? Have you set the necessary fuses? Regards John Samperi *******************************************************
Thread view
Attachments: 0
2008-02-14 by khahramon0786
Hi All. Look at my source code, i couldn't find my fault there. I want to get 40Khz, but in VMLAB it shows 29Khz.here is my source code. /***************************************************** This program was produced by the CodeWizardAVR V1.24.8b Professional Automatic Program G
Thread view
Attachments: 0
2008-02-13 by James Wagner
There is an AVR32 section of the AVRFreaks list. You are likely to get much better answers there. Jim Wagner On Feb 13, 2008, at 2:24 PM, Manne Tallmarken wrote: > Hello folks, > > I have coded the AVR's for some time now and want to start looking > at the AVR32's. The problem is
Thread view
Attachments: 0
2008-02-13 by Manne Tallmarken
Hello folks, I have coded the AVR's for some time now and want to start looking at the AVR32's. The problem is I don't know how to start. How do I program it? I want to build my own programmer from scratch, preferrably the simplest one (though it need not to be simple in the sens
Thread view
Attachments: 0
2008-02-11 by Dennis Clark
> --- In AVR-Chat@yahoogroups.com, "ktal3at" wrote: >> >> I am controlling the motors by using avr micro control >> >> the way to increase or decrease the motor speed is the PWM >> >> and it is my first time to control motors >> >> so i am looking for help how to use the PWM and
Thread view
Attachments: 0
2008-02-11 by mehdi_saiedmehdizadeh
--- In AVR-Chat@yahoogroups.com, "ktal3at" wrote: > > I am controlling the motors by using avr micro control > > the way to increase or decrease the motor speed is the PWM > > and it is my first time to control motors > > so i am looking for help how to use the PWM and how can i
Thread view
Attachments: 0
2008-02-06 by Kevin Rosenberg
I released kavrcalc 1.9 for Windows and Linux yesterday at http://www.b9.com/elect/avr/kavrcalc/index.html Problem reports and suggestions most welcomed. -- Kevin Rosenberg kevin@hypershots.com
Thread view
Attachments: 0
2008-02-06 by Tim Mitchell
Hello folks Does anyone know where I can find some information on printing to a printer using USB-on-the-go from an AT90USB1287 device. I have got all of Atmel's mass-storage and HID example code up and running on the device, I can use the USB-OTG to read a memory stick in host m
Thread view
Attachments: 0
2008-02-06 by Joe
Here is some starting help: I did a pwm thermal controller. I used a TEC (thermo electric cooler) that I controlled with PWM thru an IRF530 fet. I also used a Dallas 1 wire temp probe for feedback. I used a PID loop for temp regulation. See: http://tech.groups.yahoo.com/group/Mea
Thread view
Attachments: 0
2008-02-05 by David VanHorn
On Feb 5, 2008 5:35 PM, John Samperi wrote: > At 09:28 AM 6/02/2008, you wrote: > >I was including the dragon with "old Jtag" and debugwire is only > >available on the MkII, right? > > No, Dragon is "new JTAG" and DW. It will debug all DW chips > but JTAG with chips only up to 32
Thread view
Attachments: 0
2008-02-05 by John Samperi
At 09:28 AM 6/02/2008, you wrote: >I was including the dragon with "old Jtag" and debugwire is only >available on the MkII, right? No, Dragon is "new JTAG" and DW. It will debug all DW chips but JTAG with chips only up to 32K of flash. Will need mk2 for larger chips. Regards John
Thread view
Attachments: 0
2008-02-05 by David VanHorn
On Feb 5, 2008 5:20 PM, John Samperi wrote: > At 08:58 AM 6/02/2008, you wrote: > > > You don't have the Mac OS X included in your OS list. :) > Also the Dragon is not included and debugWire, only JTAG. I was including the dragon with "old Jtag" and debugwire is only available on
Thread view
Attachments: 0
2008-02-05 by John Samperi
At 08:58 AM 6/02/2008, you wrote: > > You don't have the Mac OS X included in your OS list. Also the Dragon is not included and debugWire, only JTAG. Regards John Samperi ******************************************************** Ampertronics Pty. Ltd. 11 Brokenwood Place Baulkham
Thread view
Attachments: 0
2008-02-05 by Dennis Clark
> At 06:27 AM 6/02/2008, you wrote: >>I've never had a working >>debugger setup using AVR Studio, and while I have a JTAG MKII, I've >>never gotten it to work for me, so . I'm glad I won it as a door >>prize at a seminar. > > I wish I had won one of them :-) I'll have to buy one
Thread view
Attachments: 0
2008-02-05 by James Wagner
Make that another "vote" for MacOS though, at the moment it is WinXP running under Fusion. I need to talk to Dennis to find out how to do it "right". Jim Wagner On Feb 5, 2008, at 1:45 PM, Dennis Clark wrote: > You don't have the Mac OS X included in your OS list. > > DLC > > > >
Thread view
Attachments: 0
2008-02-05 by John Samperi
At 10:36 PM 5/02/2008, you wrote: >#4 you could be ending up in an endless loop.... My GUESS is #5 Using the internal clock. Regards John Samperi ******************************************************** Ampertronics Pty. Ltd. 11 Brokenwood Place Baulkham Hills, NSW 2153 AUSTRALIA
Thread view
Attachments: 0
2008-02-05 by Dennis Clark
You don't have the Mac OS X included in your OS list. DLC > > Enter your vote today! A new poll has been created for the > AVR-Chat group: > > I'm trying to run down the root of the unreliability problem with Studio > 4.x > Please let me know what you can about your development e
Thread view
Attachments: 0
2008-02-05 by John Samperi
At 06:27 AM 6/02/2008, you wrote: >I've never had a working >debugger setup using AVR Studio, and while I have a JTAG MKII, I've >never gotten it to work for me, so . I'm glad I won it as a door >prize at a seminar. I wish I had won one of them :-) I'll have to buy one shortly if
Thread view
Attachments: 0
2008-02-05 by Dennis Clark
>> Eclipse is a Java based open source IDE that can be configured for lots >> of environments. It is so flexible that it is almost impossible to use >> at times. :) There is a nice AVR plugin for it and avr-gcc that while >> it is a little rough around the edges, helped me over t
Thread view
Attachments: 0
2008-02-05 by James Wagner
The latest Studio download includes a "beta" of something. Jim Wagner On Feb 5, 2008, at 12:10 PM, Kevin Rosenberg wrote: > David VanHorn wrote: > > I hear of a new studio in the works, a "ground up rewrite", which > > makes me wonder why they would rewrite something like this if
Thread view
Attachments: 0
2008-02-05 by Kevin Rosenberg
David VanHorn wrote: > I hear of a new studio in the works, a "ground up rewrite", which > makes me wonder why they would rewrite something like this if it were > truly working for everyone but me. I can think of several reasons for a rewrite besides that; such as a rewrite to a
Thread view
Attachments: 0
2008-02-05 by David VanHorn
> Eclipse is a Java based open source IDE that can be configured for lots > of environments. It is so flexible that it is almost impossible to use > at times. :) There is a nice AVR plugin for it and avr-gcc that while > it is a little rough around the edges, helped me over the h
Thread view
Attachments: 0
2008-02-05 by Dennis Clark
> On Feb 5, 2008 2:17 PM, Dennis Clark wrote: >> I gave up on Studio a while ago. I do my development on a Mac using >> Eclipse, avr-gcc and avrdude. I've not tried the debugging stuff yet - >> I >> tend to debug using printf... >> > > What's an Eclipse? Eclipse is a Java based o
Thread view
Attachments: 0
2008-02-05 by David VanHorn
On Feb 5, 2008 2:17 PM, Dennis Clark wrote: > I gave up on Studio a while ago. I do my development on a Mac using > Eclipse, avr-gcc and avrdude. I've not tried the debugging stuff yet - I > tend to debug using printf... > What's an Eclipse? Also, I agree on PrintF, but what abou
Thread view
Attachments: 0
2008-02-05 by Dennis Clark
I gave up on Studio a while ago. I do my development on a Mac using Eclipse, avr-gcc and avrdude. I've not tried the debugging stuff yet - I tend to debug using printf... DLC > > Enter your vote today! A new poll has been created for the > AVR-Chat group: > > I'm trying to run do
Thread view
Attachments: 0
2008-02-05 by Roy E. Burrage
The worst technician I ever hired blacked out my written test...a test that some have sat down, looked over, and handed back saying "you don't want a technician, you want an engineer." No, I want a technician who knows how to do more than change a board...but that's an epistle. O
Thread view
Attachments: 0
2008-02-05 by David VanHorn
> David's comment about how debugging is not taught gives me an idea. > Wouldn't it be fun to teach a class where you'd have a lecture/discussion > followed by a set up buggy problem for hands on skill building. I took > something like this taught internally when I was at Apple a
Thread view
Attachments: 0
2008-02-05 by Philippe Habib
Another question is did this ever work? If so, what has changed since then? Hardware, software, environment, even things that "don't matter" David's comment about how debugging is not taught gives me an idea. Wouldn't it be fun to teach a class where you'd have a lecture/discussi
Thread view
Attachments: 0
2008-02-05 by subscriptions@aeolusdevelopment.com
Dennis Clark Wrote > And then there is what I have taught my students and preach a bit about >on the 'net. It comes in part from Sherlock Holmes and part from my own >experience: > >Data Watson! Data! You cannot make bricks without straw. > >and > >If the data does not make any s
Thread view
Attachments: 0
2008-02-05 by Roy E. Burrage
Too quick with the send button... If your main program is nothing but a series of calls to subroutines, you can divide and conquer by commenting out a particular subroutine during test in order to see if that's where your problem is. This also allows for easier simulation and tes
Thread view
Attachments: 0
2008-02-05 by Roy E. Burrage
To add to this, building your program as a set of modules makes this process a lot easier. Your main program would be a series of calls to subroutines that would return to the main program when they're done doing what ever it is they do. Doing a flow chart helps in this process.
Thread view
Attachments: 0
2008-02-05 by Dennis Clark
And then there is what I have taught my students and preach a bit about on the 'net. It comes in part from Sherlock Holmes and part from my own experience: Data Watson! Data! You cannot make bricks without straw. and If the data does not make any sense, examine your assumptions,
Thread view
Attachments: 0
2008-02-05 by David VanHorn
This is a part of the art that isn't taught much.. How to diagnose or debug a problem. Basically, you need to divide up your system, to know that "THIS PART WORKS", and keep sectioning off the problem into a smaller and smaller space until you have it cornered. I learned this art
Thread view
Attachments: 0
2008-02-05 by AVR-Chat@yahoogroups.com
Enter your vote today! A new poll has been created for the AVR-Chat group: I'm trying to run down the root of the unreliability problem with Studio 4.x Please let me know what you can about your development environment. I know some of us seem to lead a charmed life, and like Geor
Thread view
Attachments: 0