Add ft2232h programmer for consistency with existing ft232h programmer

This commit is contained in:
Marius Greuel 2022-12-27 13:00:57 +01:00
parent 0c0da9162c
commit 5d0f151f4a
1 changed files with 17 additions and 15 deletions

View File

@ -788,7 +788,7 @@ programmer
; ;
#------------------------------------------------------------ #------------------------------------------------------------
# avrftdi # ft2232h
#------------------------------------------------------------ #------------------------------------------------------------
# this will interface with the chips on these programmers: # this will interface with the chips on these programmers:
@ -812,8 +812,8 @@ programmer
# these FTDI ICs has been designed. # these FTDI ICs has been designed.
programmer programmer
id = "avrftdi"; id = "ft2232h";
desc = "FT2232D based generic programmer"; desc = "FT2232H based generic programmer";
type = "avrftdi"; type = "avrftdi";
prog_modes = PM_TPI | PM_ISP; prog_modes = PM_TPI | PM_ISP;
connection_type = usb; connection_type = usb;
@ -821,17 +821,19 @@ programmer
usbpid = 0x6010; usbpid = 0x6010;
usbdev = "A"; usbdev = "A";
# ISP-signals - lower ADBUS-Nibble (default) # ISP-signals - lower ADBUS-Nibble (default)
reset = 3; reset = 3; # AD3 (TMS)
sck = 0; sck = 0; # AD0 (TCK)
sdo = 1; sdo = 1; # AD1 (TDI)
sdi = 2; sdi = 2; # AD2 (TDO)
# LED SIGNALs - higher ADBUS-Nibble ;
# errled = 4;
# rdyled = 5; #------------------------------------------------------------
# pgmled = 6; # avrftdi
# vfyled = 7; #------------------------------------------------------------
# Buffer Signal - ACBUS - Nibble
# buff = 8; programmer parent "ft2232h"
id = "avrftdi";
desc = "FT2232D based generic programmer";
; ;
#------------------------------------------------------------ #------------------------------------------------------------