Sonsivri

Electronics => AVR, 8051 Family and ARM Area => Topic started by: ashrafhafezg on November 21, 2007, 07:29:52 19:29



Title: All free AVR programmers
Post by: ashrafhafezg on November 21, 2007, 07:29:52 19:29
Plz send here all AVR programmer links ;) ;) ;)


Title: Re: All free AVR programmers
Post by: mehdi65 on November 21, 2007, 08:15:56 20:15
HVProg
http://www.der-hammer.info/hvprog/index_en.htm
Compatible with AvrStudio
 Supports all AVR Controllers
 Parallel and serial High-Voltage-Programming
Small and easy layout with only a few parts
STK500 protocol
Schematics and board layout available

AVR ISP 2 clone
http://www.embedded-projects.net/usbprog
USBASP(AVR DUDE)
http://www.fischl.de/usbasp
BEST PROGRAMMERS FOR AVR
USBASP & STK200/300(WIN)
http://www.zhifengsoft.com
CHIP BLASTER AVR
http://www.hpinfotech.ro/
PONYPROG
http://www.lancos.com/


Title: Re: All free AVR programmers
Post by: designer on November 23, 2007, 07:27:39 07:27
http://www.amwaw.edu.pl/~adybkows/elka/ispprog.html


Title: Re: All free AVR programmers
Post by: blaba on November 23, 2007, 07:47:54 07:47
I have made HV programmer and it works pretty good


Title: Re: All free AVR programmers
Post by: s_ch on November 23, 2007, 10:34:37 10:34
program Algoritm Builder have very nice programmer for Avr. (for moderator- this is not reclame Algorithm builder  :) )
you may download demo version program.  in description this program consider circuit programmer for all avr.


Title: Re: All free AVR programmers
Post by: chyun3 on November 25, 2007, 08:57:27 08:57
Hello, here got one very simple AVR programmer
http://electronics-diy.com/avr_programmer.php

It use PONYPROG

Do anyone know is it a High Voltage programmer??? I have accidentally lock my AVR controller...


Title: Re: All free AVR programmers
Post by: microkid on November 25, 2007, 01:22:30 13:22
Hello, here got one very simple AVR programmer
http://electronics-diy.com/avr_programmer.php

It use PONYPROG

Do anyone know is it a High Voltage programmer??? I have accidentally lock my AVR controller...

No it is not a high voltage programmer

Try AVR Doper. A simple easy to build high voltage parallel avr programmer.

MicroKid


Title: Re: All free AVR programmers
Post by: ficho on November 25, 2007, 03:37:29 15:37
Hello, here got one very simple AVR programmer
http://electronics-diy.com/avr_programmer.php

It use PONYPROG

Do anyone know is it a High Voltage programmer??? I have accidentally lock my AVR controller...
I once locked ATMEGA8515 buy mistake and used up-48 to remove my mistake...it was somthing like enable/disable serial programming, you can lock mcu but dont disable serial programming


Title: Re: All free AVR programmers
Post by: xp338 on November 25, 2007, 05:42:45 17:42
IsoJtagISP AVR Programmer

http://www.alelec.net/isojtagisp/isojtagisp.php


Title: Re: All free AVR programmers
Post by: Martin on December 04, 2007, 07:40:39 19:40
On this website ( http://www.mikrocontroller-projekte.de/ ) you can found very interest AVR programer. Im tested it and work perfectly.


Title: Re: All free AVR programmers
Post by: dandumit on December 06, 2007, 09:00:58 09:00
A simple parallel mode programmer for parallel port and other good things could be found here :

http://elm-chan.org/works/avrx/report_e.html


Title: Re: All free AVR programmers
Post by: ashrafhafezg on December 07, 2007, 11:45:15 11:45
http://www.dontronics.com/dt006_programming.html


Title: Re: All free AVR programmers
Post by: firewalker on December 08, 2007, 12:31:41 12:31
http://www.tuxgraphic.org/electronics/200510/article05101.shtml

http://www.tuxgraphic.org/electronics/200705/article07052.shtml



Title: Re: All free AVR programmers
Post by: botanik5745 on December 10, 2007, 02:00:05 14:00
http://prottoss.com/projects/AVR910.usb.prog/avr910_usb_programmer.htm


Title: Re: All free AVR programmers
Post by: Mega32 on December 12, 2007, 09:12:11 21:12
This one is really cute

http://www.ladyada.net/make/usbtinyisp/index.html
http://www.ladyada.net/make/usbtinyisp/download.html

/Mega32


Title: Re: All free AVR programmers
Post by: firewalker on January 01, 2008, 08:00:39 20:00
I had build the following programmer.

http://www.tuxgraphic.org/electronics/200510/article05101.shtml

Recently I saw that there is a new version.

http://www.tuxgraphic.org/electronics/200705/article07052.shtml

So I started to build it... Later I discovered that I had no FTDI chips left... I was bored sitting without doing something so I fused the following projects...

http://www.tuxgraphic.org/electronics/200705/article07052.shtml

and

http://www.recursion.jp/avrcdc/

The result was this circuit

(http://www.imageshack.gr/files/njnv5phoil5s4tjnipzn.png)

(http://www.imageshack.gr/files/w1eyoct6tfmjdecgfssz.jpg)

The combination above wont work unless we make some changes to the code running inside the Atmega8 / 88 . The code can be found here (http://www.tuxgraphic.org/common/src2/article07052/avrusb500v2-1.2.tar.gz). After decompressing the file we are locating the file uart.c. We open it and locating the part bellow

Code:
// baud=7=115.2K with an external 14.7456MHz crystal
        // baud=9=115.2K with an external 18.4320MHz crystal
        unsigned int baud=9;

We are chancing the unsigned int baud=9; to unsigned int baud=119;. This change is necessary in order to change the uart of Atmega8 / 88 to 9600 bps witch is the maximum for the Attiny2313 part of the circuit. With the command make we are creating the main.hex which we are going to load at Atmega8 / 88.  If  we don't have any other programmer we can use avrdude (http://www.nongnu.org/avrdude/)  and a very simple programmer (http://www.bsdhome.com/avrdude/) to load the codes to the chips.

The code for Attiny2313 can be found  here (http://www.recursion.jp/avrcdc/CDC-2313.2007-10-03.tgz). The existing cdc2313.hex file can be used as is for programming ATtiny2313.

The programmer works fine under Linux and Windows with avrdude and Atmel AvrStudio 4 under Windows.  For those that can't handle smd chips like FTxxx and doesn't want to order the pcb it is a good solution. The programmer is a bit slow because of the 9600 bps.

All tests were made using ArchLinux (http://www.archlinux.org) with gcc-avr 4.1.2; avr-libc 1.4.5; binutils-avr 2.17; uisp 20050207 and avrdude 5.5. For the testing in Windows;  I used Windows Xp Sp 2.


Title: Re: All free AVR programmers
Post by: avralam on December 20, 2008, 09:48:19 09:48
Free LPT port programmer soft and STK 200 dongle modification working with AvrStudio.
http://www.avrfreaks.net/index.php?name=PNphpBB2&file=viewtopic&t=36591&postdays=0&postorder=asc
 http://www.kanda.com/avr-isp-software.html
Fast and cheap, modified for fast computers, parallelport programmer STK200/300 dongle.
http://www.aplomb.nl/TechStuff/PPPD/PPPD%20English.html

 Works good with my IBM T42  CPU- 1G7.


Title: Re: All free AVR programmers
Post by: ali_asadzadeh on January 12, 2009, 12:41:36 12:41
hi
i have designed  this JTAG Twice programmer(stk500+jtag ice) integrated in only one ATmega16.
here is the link
http://www.avrfreaks.net/index.php?module=Freaks%20Academy&func=viewItem&item_type=project&item_id=1075


Title: Re: All free AVR programmers
Post by: RedBull on November 07, 2009, 05:34:52 17:34
Anyone please recommend a very simple programmer for AT89S52.
Thanks


Title: Re: All free AVR programmers
Post by: horre_8 on November 11, 2009, 12:58:55 12:58
simple usb isp for avr?


Title: Re: All free AVR programmers
Post by: wellnerson1 on November 12, 2009, 04:25:13 04:25
Hai Redbull, use the following simple programmer for your 89S52, its quite simple and it is tested also.
The HW i hve used is given in the attachment.
The program can be downloaded from
http://www.kmitl.ac.th/~kswichit/Pgm89v31_web/Pgm89v31.zip
http://www.kmitl.ac.th/~kswichit/IspPgm30a/ISP-Pgm30a.html (http://www.kmitl.ac.th/~kswichit/Pgm89v31_web/Pgm89v31.zip)


Title: Re: All free AVR programmers
Post by: RedBull on November 12, 2009, 04:23:21 16:23
thanks wellnerson1...
I had searched over the net for programmer but could only find one where we had to have 89C2051 or atmega8 chip programmed with the provided firmware somehow before burning into 89S52. I cant get that done so i'm searching for the simpler alternative.Any suggestion?


Title: Re: All free AVR programmers
Post by: hate on November 12, 2009, 06:27:37 18:27
I couldn't find this one listed or did I miss?

http://www.obdev.at/products/vusb/avrdoper.html

Regards...


Title: Re: All free AVR programmers
Post by: pabsironman on March 12, 2010, 06:53:38 18:53
I've found this link. It's very good, helps you with some names of programmers and also and schematic.

http://www.xs4all.nl/~sbolt/e-spider_prog.html


Title: Re: All free AVR programmers
Post by: Tahmeed on January 09, 2011, 06:24:22 18:24
hello. can anybody suggest for a cheap, easy to make atmega32 USB programmer schematic pls?.......


Title: Re: All free AVR programmers
Post by: pushycat on January 11, 2011, 07:10:06 07:10
hello. can anybody suggest for a cheap, easy to make atmega32 USB programmer schematic pls?.......
This is your repeated request for the same topic. Your same question is bieng answered in other thread by "Metal".