- added support for FreeBSD ppi (parallel port access similar to /dev/parport on linux) (thanks to Darius for this patch)

- unified 'ftd2xx' and 'ftdi2232' into a single interface 'ft2232'. The library used to access the hardware is choosen during configure with --enable-ft2232_ftd2xx or --enable-ft2232-libftdi.


git-svn-id: svn://svn.berlios.de/openocd/trunk@83 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
drath
2006-08-11 17:49:41 +00:00
parent ca1e5ee1f4
commit ec0f06db11
8 changed files with 346 additions and 828 deletions

View File

@@ -25,16 +25,16 @@ else
PARPORTFILES =
endif
if FTDI2232
FTDI2232FILES = ftdi2232.c
if FT2232_LIBFTDI
FT2232FILES = ft2232.c
else
FTDI2232FILES =
FT2232FILES =
endif
if FTD2XX
FTD2XXFILES = ftd2xx.c
if FT2232_FTD2XX
FT2232FILES = ft2232.c
else
FTD2XXFILES =
FT2232FILES =
endif
if AMTJTAGACCEL
@@ -49,6 +49,6 @@ else
EP93XXFILES =
endif
libjtag_a_SOURCES = jtag.c $(BITBANGFILES) $(PARPORTFILES) $(FTDI2232FILES) $(FTD2XXFILES) $(AMTJTAGACCELFILES) $(EP93XXFILES)
libjtag_a_SOURCES = jtag.c $(BITBANGFILES) $(PARPORTFILES) $(FT2232FILES) $(AMTJTAGACCELFILES) $(EP93XXFILES)
noinst_HEADERS = bitbang.h jtag.h