libftdi
13 years agoRemove ftdi_eeprom_getsize also from the CPP Wrapper
Uwe Bonnes [Wed, 8 Sep 2010 14:01:32 +0000]
Remove ftdi_eeprom_getsize also from the CPP Wrapper

13 years agoRemove ftdi_read_eeprom_getsize() function. Integrate in into the ftdi_read_eeprom...
Uwe Bonnes [Wed, 8 Sep 2010 13:50:06 +0000]
Remove ftdi_read_eeprom_getsize() function. Integrate in into the ftdi_read_eeprom() function. On ftdi_eeprom_write() another approach is needed

13 years agoWe need to handle at max 256 Bytes on an attached 93xx66 EEPROM
Uwe Bonnes [Wed, 8 Sep 2010 13:16:54 +0000]
We need to handle at max 256 Bytes on an attached 93xx66 EEPROM

13 years agoCorrect ftdi_eeprom_free()
Uwe Bonnes [Wed, 8 Sep 2010 12:58:43 +0000]
Correct ftdi_eeprom_free()

13 years agoUse ftdi_error_return for EEPROM error returns
Uwe Bonnes [Wed, 8 Sep 2010 11:16:33 +0000]
Use ftdi_error_return for EEPROM error returns

13 years agoLet the eeprom functions work on the ftdi_context, not the ftdi_eeprom structure
Uwe Bonnes [Wed, 8 Sep 2010 10:00:31 +0000]
Let the eeprom functions work on the ftdi_context, not the ftdi_eeprom structure

13 years agoCorrect (signedness) issues detected by -Wall
Thomas Jarosch [Thu, 16 Sep 2010 08:28:45 +0000]
Correct (signedness) issues detected by -Wall

13 years agoFix initialization order (found by -Wall)
Thomas Jarosch [Thu, 16 Sep 2010 08:25:53 +0000]
Fix initialization order (found by -Wall)

13 years agoAdd -Wall to compiler flags
Uwe Bonnes [Wed, 8 Sep 2010 09:01:51 +0000]
Add -Wall to compiler flags

13 years agostream_test.c cleanup
Uwe Bonnes [Wed, 8 Sep 2010 09:58:03 +0000]
stream_test.c cleanup

13 years agoSupport for FT232R eeprom features
Hermann Kraus [Wed, 18 Aug 2010 07:50:55 +0000]
Support for FT232R eeprom features

From the mailinglist:
Hello!

I added support for creating FT232R-EEPROM images. They differ from
FT232BM images making communication unreliable if you don't get them right:
- Addr 0x00: Bit 6 selects between normal and high-current output mode
- Addr 0x01: IN endpoint size. !!! It is essential to set this to 0x40 to
get reliable communication! !!!
- Addr 0x07: (Device version) Was changed from 0x04 to 0x06
- Addr 0x0B: Invert outputs. Bit numbers:
0 TXD
1 RXD
2 RTS#
3 CTS#
4 DTR#
5 DSR#
6 DCD#
7 RI#
- Addr 0x14-0x16: Change function of CBUS pins. Low nibble of 0x14 is
CBUS0, high nibble CBUS1 and so on.
Values (hex):
TXDEN = 0
PWREN# = 1
RXLED# = 2
TXLED# = 3
TX_RX_LED# = 4
SLEEP# = 5
CLK48 = 6
CLK24 = 7
CLK12 = 8
CLK6 = 9
IO_MODE = A
BIT_WR = B
BIT_RD = C
RXF/TXE/RD/WR = D

It should be noted that 0x14-0x16 are used by the current library to
strings and therefore change behavior depending on the string descriptor.
In images created by FT_Prog 0x17 is 0 so I threat this as reserved.
FT_Prog has problems parsing string descriptor from devices written by
ftdi-eeprom without this patch.

I also have investigated FT2232L-EEPROM (=FT2232C) but have no final
conclusion yet,
because I don't want to change the information in this device. Just some
obvious differences.
- Addr 0x00/0x01: value 0x11 0x08
- Addr 0x07: (Device version) 0x05
- Addr 0x14/0x15: value 0x46 0x00
String descriptors start at 0x16.

13 years agoC++ wrapper: Fix infinite recursion in set_bitmode()
Thomas Jarosch [Mon, 16 Aug 2010 16:06:42 +0000]
C++ wrapper: Fix infinite recursion in set_bitmode()

Reported by Hermann Kraus

13 years agoPython wrapper: Fix argument type of ftdi_read_chipid
Flynn Marquardt [Wed, 14 Jul 2010 07:53:17 +0000]
Python wrapper: Fix argument type of ftdi_read_chipid

13 years agoUpdate AUTHORS and fix code indent
Thomas Jarosch [Wed, 14 Jul 2010 07:46:12 +0000]
Update AUTHORS and fix code indent

13 years agobug fix for async write and read
Yi-Shin Li [Sun, 11 Jul 2010 15:08:11 +0000]
bug fix for async write and read

* In ftdi_write_data_cb(), the tc->offset should be accumulated with
  transfer->actual_length.

* In ftdi_transfer_data_done(), the tc->transfer could be NULL if
  "(size <= ftdi->readbuffer_remaining)" at ftdi_read_data_submit().
  Therefore, has to check if it's NULL before accessing it.

13 years agogitignore: temporary swp-files created by vim
Martin Zenzes (spacelab1-u) [Thu, 1 Jul 2010 10:49:19 +0000]
gitignore: temporary swp-files created by vim

nothing special here, just a plain .*.swp

Signed-off-by: Martin Zenzes (spacelab1-u) <mzenzes@mega2000.de>

13 years agoAlways enable async mode using libusb 1.x
Thomas Jarosch [Fri, 25 Jun 2010 10:57:22 +0000]
Always enable async mode using libusb 1.x

It's no longer linux specific (depends on platform support).

13 years agolibftdi: add a --without-docs flag
Mike Frysinger [Tue, 22 Jun 2010 23:02:06 +0000]
libftdi: add a --without-docs flag

Allow people to easily & forcibly disable doxygen support.  This is useful
in builds where we only want the library and nothing else.

The default is unchanged -- configure still searches for doxygen.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

13 years agolibftdi: add a --without-examples configure flag
Mike Frysinger [Tue, 22 Jun 2010 22:46:09 +0000]
libftdi: add a --without-examples configure flag

There's a few places where I'm only concerned with building the libftdi
library (for integrating it into a JTAG program), so the examples are just
noise to me.  As such, add an --without-examples configure flag so people
can easily disable the subdir.  The default is unchanged -- examples are
still compiled & installed.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

13 years agofix build failure in libusb_context change
Mike Frysinger [Tue, 22 Jun 2010 23:42:11 +0000]
fix build failure in libusb_context change

Current git tree build fails:
ftdi.c: In function 'ftdi_transfer_data_done':
ftdi.c:1513:36: error: 'ftdi' undeclared (first use in this function)

This function has a ftdi_transfer_control tc, not a ftdi_context ftdi.

Probably want to squash this into commit:
02212d8e84cccd393a95612d4c4a5ec495fa3e2e
Store and use the libusb_context

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

13 years agoFix up build on Mac OS X:
Emmanuel Blot [Sat, 19 Jun 2010 20:59:54 +0000]
Fix up build on Mac OS X:

* Fix up Boost library management
* Fix up Python bindings
* Discard attempt to build C++ examples when Boost is not available

13 years agoFix up string formatting for long long integers (64 bits)
Emmanuel Blot [Sat, 19 Jun 2010 20:43:48 +0000]
Fix up string formatting for long long integers (64 bits)

13 years agoStore and use the libusb_context
Uwe Bonnes [Mon, 21 Jun 2010 08:44:10 +0000]
Store and use the libusb_context

13 years agoAdd ftdi_eeprom_free() to free allocated memory in eeprom
Wilfried Holzke [Mon, 14 Jun 2010 07:20:14 +0000]
Add ftdi_eeprom_free() to free allocated memory in eeprom

13 years agoCorrect version of ftdi_readstream agains GIT Head
Uwe Bonnes [Thu, 10 Jun 2010 13:50:35 +0000]
Correct version of ftdi_readstream agains GIT Head

13 years agoExport ftdi_readstream()
Uwe Bonnes [Thu, 10 Jun 2010 12:36:54 +0000]
Export ftdi_readstream()

13 years agoEnhance FTDI driver message once more
Thomas Jarosch [Thu, 10 Jun 2010 15:53:23 +0000]
Enhance FTDI driver message once more

13 years agoMore generic error message for the FTDI kernel driver
Thomas Jarosch [Wed, 9 Jun 2010 16:32:34 +0000]
More generic error message for the FTDI kernel driver

13 years agoProvide a streaming read, base on code from Micah Dowty
Uwe Bonnes [Mon, 31 May 2010 13:46:55 +0000]
Provide a streaming read, base on code from Micah Dowty

Hello,

with appended code and a revised verilog code, I can reliable read blocks of
16 Bytes of date generated about each Microsecond, like running for about
500 seconds:

8 errors of 375293955 blocks (2.131662e-08), 9 (2.398120e-08) blocks skipped

From time to time some one or two blocks are skipped, which is something to
expect, as I only have about 128 byte of additional FIFO beside the FT2232H
internal fifo. First test showed that a larger FIFO lead to some more skips,
either by some flaw in my logic or some strange behaviour of the FT2232H
chip.

Writing the generated data to disk leads to skips for several to several ten
microseconds each several to several seconds. Probably the BLK (big kernel
lock) hits here.

The patch only adds some definition to ftdi.h and the additional file
ftdi_stream.c, with Micah Dowty okay to dual license his code. so I hope it
is okay to apply. Should the verilog code be inclided in libftdi too?

13 years agolibbusb_get_device_list() needs libusb_free_device_list() to avoid leaks
Uwe Bonnes [Tue, 8 Jun 2010 11:16:19 +0000]
libbusb_get_device_list() needs libusb_free_device_list() to avoid leaks

This second patch calls libbusb_get_device_list() in all code pathes of
ftdi_usb_open_desc_index() and ftdi_usb_open_string() after
libusb_get_device_list() was called.

ftdi_usb_find_all() still leaks  and will be handled in another patch when
these two patches are applied.

13 years agolibusb_init() needs libusb_exit() to avoid leak
Uwe Bonnes [Tue, 8 Jun 2010 10:24:19 +0000]
libusb_init() needs libusb_exit() to avoid leak

13 years agoUnconditionally call libusb_detach_kernel_driver() Try to be more helpfull when thing...
Uwe Bonnes [Tue, 18 May 2010 14:05:10 +0000]
Unconditionally call libusb_detach_kernel_driver() Try to be more helpfull when things fail because of missing permission

13 years agoHonor CPPFLAGS in python wrapper to improve build process on Mac OS X
Alexander Lehmann [Tue, 25 May 2010 12:25:07 +0000]
Honor CPPFLAGS in python wrapper to improve build process on Mac OS X

13 years agoCMAKE: Fix package creation on 32-bit machines
Uwe Bonnes [Sun, 2 May 2010 15:46:45 +0000]
CMAKE: Fix package creation on 32-bit machines

Appended patch fixes a typo that caused the creation of _64.[deb|rpm]
also for 32-bit builds.

14 years agoFix swig argument constraints. Thanks to Craig Hollabaugh for the hint.
Thomas Jarosch [Fri, 16 Apr 2010 21:16:37 +0000]
Fix swig argument constraints. Thanks to Craig Hollabaugh for the hint.

14 years agoFix ftdi_set_interface: It gets called before ftdi_usb_open().
Thomas Jarosch [Mon, 29 Mar 2010 10:21:52 +0000]
Fix ftdi_set_interface: It gets called before ftdi_usb_open().

Thanks to Marcus Krellig for pointing it out.

14 years agoProtect against segfault if device is closed or ftdi context is invalid
Thomas Jarosch [Fri, 19 Feb 2010 22:38:20 +0000]
Protect against segfault if device is closed or ftdi context is invalid

This will help mulithreaded applications which do proper
locking around the ftdi_xxx() functions and one thread
already closed the USB device -> Zonk!

Ported to libftdi-1.0 with additional checks.

Thanks to Thomas Klose for reporting the issue.

14 years agoUse max_packet_size
Uwe Bonnes [Tue, 2 Feb 2010 16:52:03 +0000]
Use max_packet_size

ftdi->max_packet_size is the best value we can get, mostly taken from the
descriptor and so right even after a 1.0 Hub

14 years agolibftdi(-1): Add cmake option to enable ASYNC_MODE
Uwe Bonnes [Tue, 2 Feb 2010 16:31:08 +0000]
libftdi(-1): Add cmake option to enable ASYNC_MODE

Appended patch allows to openm async mode with something like
cmake -DASYNC-MODE=on

It should apply to libusb too.

14 years agoWe need to find libusb-1, so adapt the CMake support files
Uwe Bonnes [Tue, 2 Feb 2010 17:52:37 +0000]
We need to find libusb-1, so adapt the CMake support files

14 years agoFix a typo in comment in my last change.
Jie Zhang [Sun, 14 Feb 2010 01:01:36 +0000]
Fix a typo in comment in my last change.

14 years agoLimit read buffer chunksize to 16384 on Linux.
Jie Zhang [Sun, 14 Feb 2010 00:44:23 +0000]
Limit read buffer chunksize to 16384 on Linux.

14 years agoDeclare ftdi_read_data_submit and ftdi_transfer_data_done in ftdi.h.
Jie Zhang [Mon, 8 Feb 2010 15:32:53 +0000]
Declare ftdi_read_data_submit and ftdi_transfer_data_done in ftdi.h.

14 years agoInitial import of using libusb-1.0.
Jie Zhang [Tue, 19 Jan 2010 10:00:01 +0000]
Initial import of using libusb-1.0.

14 years agobuilding parts of libftdi via cmake is now optional.
Gerd von Egidy [Mon, 18 Jan 2010 14:17:09 +0000]
building parts of libftdi via cmake is now optional.

the options are:
DOCUMENTATION
PYTHON_BINDINGS
FTDIPP
EXAMPLES

by default all parts will be built.

14 years agoAX_BOOST_BASE: fix host boost search when cross-compiling
Mike Frysinger [Tue, 29 Dec 2009 08:48:59 +0000]
AX_BOOST_BASE: fix host boost search when cross-compiling

The AX_BOOST_BASE macro likes to do searches in the host paths (/usr and
such) which is obviously incorrect for cross-compiling.  So disable these
fallback searches when cross-compiling.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

14 years agoavoid PATH_MAX/string copies usage
Mike Frysinger [Tue, 29 Dec 2009 08:37:15 +0000]
avoid PATH_MAX/string copies usage

The new ftdi_usb_open_string() func breaks mingw builds where PATH_MAX is
not defined.  Rather than adding fallback code, compare the path strings
piece by piece to avoid the string copy overhead in the process.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

14 years agopython: fix typo in top_builddir
Mike Frysinger [Tue, 29 Dec 2009 07:44:36 +0000]
python: fix typo in top_builddir

Missing a "d" in the var name.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

14 years agoDocument libftdi release process
Thomas Jarosch [Mon, 21 Dec 2009 09:11:08 +0000]
Document libftdi release process

14 years agoCorrect version in README file
Thomas Jarosch [Mon, 21 Dec 2009 08:46:21 +0000]
Correct version in README file

14 years agoignore more generated files
Mike Frysinger [Sun, 20 Dec 2009 14:10:00 +0000]
ignore more generated files

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

14 years agouse AC_CONFIG_FILES to avoid outputting files over and over
Mike Frysinger [Sun, 20 Dec 2009 14:09:59 +0000]
use AC_CONFIG_FILES to avoid outputting files over and over

The current configure ends up generating a lot of common files multiple
times because it calls AC_OUTPUT multiplte times.  The right way to do
this is call AC_CONFIG_FILES multiple times and AC_OUTPUT once.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>

14 years agoIncrease version v0.17
Thomas Jarosch [Sat, 19 Dec 2009 15:15:44 +0000]
Increase version

14 years agoUpdated ChangeLog before release
Thomas Jarosch [Sat, 19 Dec 2009 15:07:01 +0000]
Updated ChangeLog before release

14 years agoDon't lint async mode anymore as libusb-compat results in #error
Thomas Jarosch [Sat, 19 Dec 2009 14:52:20 +0000]
Don't lint async mode anymore as libusb-compat results in #error

14 years agosmall improvements in C++ wrapper:
Gerd v. Egidy [Sun, 13 Dec 2009 16:53:29 +0000]
small improvements in C++ wrapper:

- make ftdi_usb_open_string() available
- reduce code dupliation in open() functions
- overloaded set_bitmask using the correct enum ftdi_mpsse_mode

14 years agodeprecated bitbang_enable in C++ wrapper too
Gerd v. Egidy [Sun, 13 Dec 2009 01:26:39 +0000]
deprecated bitbang_enable in C++ wrapper too

14 years agodon't use deprecated functions in examples anymore
Gerd v. Egidy [Sun, 13 Dec 2009 01:17:19 +0000]
don't use deprecated functions in examples anymore

14 years agodeprecate ftdi_enable_bitbang()
Gerd v. Egidy [Sun, 13 Dec 2009 01:10:07 +0000]
deprecate ftdi_enable_bitbang()
- it's superseded for a long time by ftdi_set_bitmode()
- it reads the mode to set from ftdi->bitbang_mode which is an unexpected interface and can lead to wrong results

14 years agodocumentation improvements, small fix setting bitbang_enabled on all bitbang modes
Gerd v. Egidy [Sun, 13 Dec 2009 01:02:09 +0000]
documentation improvements, small fix setting bitbang_enabled on all bitbang modes

14 years agouse ftdi_usb_open_string() in baud_test example
Gerd v. Egidy [Sat, 12 Dec 2009 23:49:22 +0000]
use ftdi_usb_open_string() in baud_test example

14 years agofix description strings without serial
Gerd v. Egidy [Sat, 12 Dec 2009 23:48:49 +0000]
fix description strings without serial

14 years agoadd new open functions: ftdi_usb_open_desc_index() and ftdi_usb_open_string()
Gerd v. Egidy [Sat, 12 Dec 2009 23:29:10 +0000]
add new open functions: ftdi_usb_open_desc_index() and ftdi_usb_open_string()

14 years agoDon't install baud_test program
Thomas Jarosch [Wed, 9 Dec 2009 08:42:56 +0000]
Don't install baud_test program

14 years agofix sync bitbang read-timing
Gerd v. Egidy [Sun, 6 Dec 2009 20:03:03 +0000]
fix sync bitbang read-timing

14 years agoread only what has really been written (seems not to make a difference though)
Gerd v. Egidy [Sun, 6 Dec 2009 19:13:02 +0000]
read only what has really been written (seems not to make a difference though)
write out real baudrate too

14 years agomake the write chunksize (and read chunksize for syncbb) configurable
Gerd v. Egidy [Sun, 6 Dec 2009 16:42:23 +0000]
make the write chunksize (and read chunksize for syncbb) configurable

14 years agoincrease resolution of time factor output
Gerd v. Egidy [Sun, 6 Dec 2009 13:39:57 +0000]
increase resolution of time factor output

14 years agofix documentation typo
Gerd v. Egidy [Sun, 6 Dec 2009 13:39:30 +0000]
fix documentation typo

14 years agoadd baud_test example program: compare expected and actual transfer speeds for differ...
Gerd v. Egidy [Sun, 6 Dec 2009 13:16:00 +0000]
add baud_test example program: compare expected and actual transfer speeds for differen baudrates

14 years agoUpdated ChangeLog
Thomas Jarosch [Fri, 4 Dec 2009 09:12:15 +0000]
Updated ChangeLog

14 years agoRenamed examples/sio to examples/serial_read
Thomas Jarosch [Fri, 4 Dec 2009 08:57:03 +0000]
Renamed examples/sio to examples/serial_read

14 years agoexamples: add sio example
Jim Paris [Wed, 2 Dec 2009 23:13:44 +0000]
examples: add sio example

Simple example to just receive and print data.

14 years agoDetermine maximum packet size via usb config descriptor
Thomas Jarosch [Sun, 15 Nov 2009 11:45:03 +0000]
Determine maximum packet size via usb config descriptor

14 years agoAdd bitmode for synchronous fifo if FT2232H
Uwe Bonnes [Fri, 20 Nov 2009 20:08:33 +0000]
Add bitmode for synchronous fifo if FT2232H

Arg,

getting a one-line right didn't work out. Please disregards the first patch
and use appended patch instead

Changelog:
Appended small patch adds the bitmode (0x40) for synchronous fifo mode of
the FT2232H

--
Uwe Bonnes                bon@elektron.ikp.physik.tu-darmstadt.de

Institut fuer Kernphysik  Schlossgartenstrasse 9  64289 Darmstadt
--------- Tel. 06151 162516 -------- Fax. 06151 164321 ----------
>From a470bfbdae1e78cc585bfe69b27ded88f4ba7349 Mon Sep 17 00:00:00 2001
From: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
Date: Fri, 20 Nov 2009 17:31:26 +0100
Subject: Add bitmode value for synchronous fifo if FT2232H

14 years agoAdded new read/write_eeprom_location to C++ wrapper
Thomas Jarosch [Thu, 5 Nov 2009 08:46:19 +0000]
Added new read/write_eeprom_location to C++ wrapper

14 years agoUpdated AUTHORS and ChangeLog
Thomas Jarosch [Tue, 3 Nov 2009 16:56:58 +0000]
Updated AUTHORS and ChangeLog

14 years agoFix usb_set_configuration() call on Windows 64.
Thomas Jarosch [Tue, 3 Nov 2009 16:54:47 +0000]
Fix usb_set_configuration() call on Windows 64.

Based upon idea/findings by "NIL".

14 years agoFix usb index in ftdi_convert_baudrate() for FT2232H/FT4232H chips
Thimo Eichstaedt [Tue, 3 Nov 2009 16:43:43 +0000]
Fix usb index in ftdi_convert_baudrate() for FT2232H/FT4232H chips

14 years agoSet initial baudrate on correct interface instead of always the first one (Thimo...
Thimo Eichstaedt [Tue, 3 Nov 2009 16:39:21 +0000]
Set initial baudrate on correct interface instead of always the first one (Thimo Eichstaedt)

From libftdi mailinglist mail:
1) in ftdi_usb_open_dev() the baudrate is set to 9600, but that is done
too early (before the interface is set). So the baudrate of the first
interface is always modified, even if you opened a different one.

14 years agoCall usb_set_configuration() on Windows only
Uwe Bonnes [Thu, 23 Jul 2009 14:25:27 +0000]
Call usb_set_configuration() on Windows only

Hello,

working with interface 0 of the FT2232(H) on Linux, I get zillions of
kernel-log messages like:

kernel: usb 6-3: usbfs: interface 1 claimed by ftdi_sio while 'a.out' sets config #1

I understand as follows:
ftdi_usb_open_dev()
first detaches the driver for interface 0
Now  usb_set_configuration() is called, but interface 1 is still attached to
the kernel driver. This results in above kernel log.

Do we really need to set the configuaration? Does any device have a
alternative configuration at all?

I propose appended patch, tested on Linux with and without ftdi_sio.ko
loaded. No other change seen, beside no more kernel log messages like above.

Bye

--
Uwe Bonnes                bon@elektron.ikp.physik.tu-darmstadt.de

Institut fuer Kernphysik  Schlossgartenstrasse 9  64289 Darmstadt
--------- Tel. 06151 162516 -------- Fax. 06151 164321 ----------
>From fcb2609f0dae14c5616c34242177959cf226a5f2 Mon Sep 17 00:00:00 2001
From: Uwe Bonnes <bon@hertz.ikp.physik.tu-darmstadt.de>
Date: Thu, 23 Jul 2009 16:21:08 +0200
Subject: usb_set_configuration() not needed on Linux

14 years agoAdd Toolchain-Crossbuild32.cmake for "make dist"
Thomas Jarosch [Tue, 3 Nov 2009 16:20:27 +0000]
Add Toolchain-Crossbuild32.cmake for "make dist"

14 years agoAllow to crossbuild 32-bit library on 64-bit machine
Uwe Bonnes [Tue, 29 Sep 2009 16:57:18 +0000]
Allow to crossbuild 32-bit library on 64-bit machine

14 years agoFor Unix 64-bit builds, use LIB_SUFFIX to install to lib64
Uwe Bonnes [Tue, 29 Sep 2009 16:56:03 +0000]
For Unix 64-bit builds, use LIB_SUFFIX to install to lib64

14 years agodon't build --with-async-mode w/ libusb-compat-0.1
Clifford Wolf [Thu, 8 Oct 2009 13:32:41 +0000]
don't build --with-async-mode w/ libusb-compat-0.1

Hello,

attached is a little patch that prohibits libftdi from compiling against
libusb-compat-0.1 (the wrapper that provides a libusb-0.1 compatible api
for systems with libusb-1.0) when libftdi is configured with async mode.

unfortunately fixing async mode for libusb-1.0+libusb-compat-0.1 is not
trivial because libusb-1.0 comes with an os abstraction layer that hides
the unix filedescriptor much deeper in internal structures. but failing to
build is imo much better than segfaulting at runtime.

yours,
 - clifford

PS: The USB_CLASS_PTP define is not present in any libusb-0.1 release
and has been added to libusb-compat-0.1 only afaics.

14 years agoFunctions for read/write of a single eeprom location
Oleg Seiljus [Tue, 3 Nov 2009 16:05:01 +0000]
Functions for read/write of a single eeprom location

14 years agoUpdated ChangeLog and AUTHORS
Thomas Jarosch [Mon, 27 Jul 2009 20:31:55 +0000]
Updated ChangeLog and AUTHORS

14 years agoRenamed new usb_close_intl() to ftdi_usb_close_internal(). Made function static and...
Thomas Jarosch [Mon, 27 Jul 2009 20:25:03 +0000]
Renamed new usb_close_intl() to ftdi_usb_close_internal(). Made function static and added doxygen documentation

14 years agoFix for double-free and segfault after close
Nathan Fraser [Mon, 27 Jul 2009 11:19:11 +0000]
Fix for double-free and segfault after close

In some circumstances it is possible to send an invalid usb_dev
pointer through to libusb after some errors or after an explicit
close request. Result will be segfault or subtle corruption.
This patch replaces all calls to usb_close with an internal wrapper
that sets the usb handle to NULL after the usb_close, and refuses
to call close on a NULL handle. Comments and/or discussion very welcome!

14 years agoFix out of tree building
Aurelien Jarno [Fri, 22 May 2009 23:46:58 +0000]
Fix out of tree building

14 years agolibftdi: Fix doxygen errors
Jim Paris [Fri, 22 May 2009 19:26:39 +0000]
libftdi: Fix doxygen errors

Signed-off-by: Jim Paris <jim@jtan.com>

14 years agolibftdi: Fix git build problems by using autoreconf
Jim Paris [Fri, 22 May 2009 18:48:21 +0000]
libftdi: Fix git build problems by using autoreconf

For recent versions of automake, the autotools steps in Makefile.cvs
don't work:
  $ make -f Makefile.cvs
  aclocal
  autoheader
  automake
  configure.in: required file `./install-sh' not found
  configure.in: required file `./mkinstalldirs' not found
  configure.in: required file `./missing' not found
  configure.in:7: required file `./config.guess' not found
  configure.in:7: required file `./config.sub' not found
  configure.in:7: required file `./ltmain.sh' not found
  examples/Makefile.am: required file `./depcomp' not found
  make: *** [all] Error 1

This is because automake no longer calls libtoolize, as described in:
  http://www.gnu.org/software/automake/manual/html_node/Error-required-file-ltmain_002esh-not-found.html
The recommended workaround there is to use autoreconf rather than
calling individual autotools programs.

This patch also removes the use of all_includes and all_libraries, as
they are undefined and cause automake errors.

Signed-off-by: Jim Paris <jim@jtan.com>

14 years agoFix compile warning on some gcc versions:
Thomas Jarosch [Sat, 9 May 2009 06:24:11 +0000]
Fix compile warning on some gcc versions:

/usr/local/libftdi-0.16/include/ftdi.h:270: warning: function
declaration isn't a prototype

Thanks to Arnim Läuger for the report.

14 years agoFinal v0.16 release date v0.16
Thomas Jarosch [Fri, 8 May 2009 15:30:15 +0000]
Final v0.16 release date

14 years agoUpdate README file with latest changes v0.16rc3
Thomas Jarosch [Wed, 6 May 2009 15:42:24 +0000]
Update README file with latest changes

14 years agoAllow C/D interfaces to be used on the 4232H, initialize the default interface for...
Alex Harford [Wed, 6 May 2009 15:40:29 +0000]
Allow C/D interfaces to be used on the 4232H, initialize the default interface for 2232H/4232H

14 years agoUpdate changelog v0.16rc2
Thomas Jarosch [Mon, 4 May 2009 19:09:42 +0000]
Update changelog

14 years agoFix result test of example application
Thomas Jarosch [Mon, 4 May 2009 18:51:55 +0000]
Fix result test of example application

14 years agoFixed Context::open as get_strings() closes the device before. Thanks to Chris M...
Marek Vavrusa [Mon, 4 May 2009 09:54:52 +0000]
Fixed Context::open as get_strings() closes the device before. Thanks to Chris M. Leahy for pointing this out. Tested on our good old example (added open test).

Intra2net: Reverted return code behavior of Context::open() calls

14 years agoAdded some more functions to list API. Fixed return type of size() call and made...
Thomas Jarosch [Mon, 4 May 2009 15:11:28 +0000]
Added some more functions to list API. Fixed return type of size() call and made sure clear() really frees the internal memory of the list. Added doxygen documentation