Add UM232H and C232H programmers
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1248 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
faf274134b
commit
68b2b5ced6
|
@ -1,3 +1,8 @@
|
|||
2013-09-25 Hannes Weisbach <hannes_weisbach@gmx.net>
|
||||
|
||||
First part of patch #7720:
|
||||
* avrdude.conf.in: Add UM232H and C232H programmers
|
||||
|
||||
2013-09-22 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||
|
||||
Submitted by Daniel Rozsnyo:
|
||||
|
|
|
@ -460,6 +460,64 @@ programmer
|
|||
# from Amontec
|
||||
;
|
||||
|
||||
# UM232H module from FTDI and Glyn.com.au.
|
||||
# See helix.air.net.au for detailed usage information.
|
||||
# J1: Connect pin 2 and 3 for USB power.
|
||||
# J2: Connect pin 2 and 3 for USB power.
|
||||
# J2: Pin 7 is SCK
|
||||
# : Pin 8 is MOSI
|
||||
# : Pin 9 is MISO
|
||||
# : Pin 11 is RST
|
||||
# : Pin 6 is ground
|
||||
# Use the -b flag to set the SPI clock rate eg -b 3750000 is the fastest I could get
|
||||
# a 16MHz Atmega1280 to program reliably. The 232H is conveniently 5V tolerant.
|
||||
programmer
|
||||
id = "UM232H";
|
||||
desc = "FT232H based module from FTDI and Glyn.com.au";
|
||||
type = "avrftdi";
|
||||
usbvid = 0x0403;
|
||||
# Note: This PID is reserved for generic 232H devices and
|
||||
# should be programmed into the EEPROM
|
||||
usbpid = 0x6014;
|
||||
usbdev = "A";
|
||||
usbvendor = "";
|
||||
usbproduct = "";
|
||||
usbsn = "";
|
||||
#ISP-signals
|
||||
sck = 1;
|
||||
mosi = 2;
|
||||
miso = 3;
|
||||
reset = 4;
|
||||
;
|
||||
|
||||
# C232HM module from FTDI and Glyn.com.au.
|
||||
# : Orange is SCK
|
||||
# : Yellow is MOSI
|
||||
# : Green is MISO
|
||||
# : Brown is RST
|
||||
# : Black is ground
|
||||
# Use the -b flag to set the SPI clock rate eg -b 3750000 is the fastest I could get
|
||||
# a 16MHz Atmega1280 to program reliably. The 232H is conveniently 5V tolerant.
|
||||
programmer
|
||||
id = "C232HM";
|
||||
desc = "FT232H based module from FTDI and Glyn.com.au";
|
||||
type = "avrftdi";
|
||||
usbvid = 0x0403;
|
||||
# Note: This PID is reserved for generic 232H devices and
|
||||
# should be programmed into the EEPROM
|
||||
usbpid = 0x6014;
|
||||
usbdev = "A";
|
||||
usbvendor = "";
|
||||
usbproduct = "";
|
||||
usbsn = "";
|
||||
#ISP-signals
|
||||
sck = 1;
|
||||
mosi = 2;
|
||||
miso = 3;
|
||||
reset = 4;
|
||||
;
|
||||
|
||||
|
||||
# On the adapter you can read "O-Link". On the PCB is printed "OpenJTAG v3.1"
|
||||
# You can find it as "OpenJTAG ARM JTAG USB" in the internet.
|
||||
# (But there are also several projects called Open JTAG, eg.
|
||||
|
|
Loading…
Reference in New Issue