The branch, master has been updated
via 9162183d5e2ebffea6a41a1a96c9c970bc838ac5 (commit)
from 03db8c311da7ec46f9143fbfaba7240b42e5968e (commit)
- Log -----------------------------------------------------------------
commit 9162183d5e2ebffea6a41a1a96c9c970bc838ac5
Author: Thomas Jarosch <thomas.jarosch@xxxxxxxxxxxxx>
Date: Mon Aug 16 18:06:42 2010 +0200
C++ wrapper: Fix infinite recursion in set_bitmode()
Reported by Hermann Kraus
-----------------------------------------------------------------------
Summary of changes:
ftdipp/ftdi.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/ftdipp/ftdi.cpp b/ftdipp/ftdi.cpp
index 2bc6c6e..8511a91 100644
--- a/ftdipp/ftdi.cpp
+++ b/ftdipp/ftdi.cpp
@@ -283,7 +283,7 @@ int Context::bitbang_disable()
int Context::set_bitmode(unsigned char bitmask, unsigned char mode)
{
- return set_bitmode(bitmask, mode);
+ return ftdi_set_bitmode(d->ftdi, bitmask, mode);
}
int Context::set_bitmode(unsigned char bitmask, enum ftdi_mpsse_mode mode)
hooks/post-receive
--
A library to talk to FTDI chips
--
libftdi-git - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi-git+unsubscribe@xxxxxxxxxxxxxxxxxxxxxxx
|