<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general">
    <title>gmane.comp.hardware.libftdi.general</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2417"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2416"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2415"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2414"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2413"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2412"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2411"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2410"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2409"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2408"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2407"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2406"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2405"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2404"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2403"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2402"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2401"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2400"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2399"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2398"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2417">
    <title>RE: ftdi_eeprom link failure</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2417</link>
    <description>&lt;pre&gt;


Hi,

Could we merge this ?
https://gitorious.org/libftdi/libftdi/commit/8b860ed08731ae6ab639973735b376de3694a199

M.
       

--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   

&lt;/pre&gt;</description>
    <dc:creator>xantares 09</dc:creator>
    <dc:date>2013-05-21T06:49:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2416">
    <title>Re: CPU Overhead?</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2416</link>
    <description>&lt;pre&gt;If all you need is to stream serial data, use the kernel driver:
   modprobe ftdi_sio
   cat /dev/ttyUSB0 &amp;gt; file
It's higher performance, lower overhead, and simpler.

-jim

Krishnendu Chatterjee wrote:

--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   


&lt;/pre&gt;</description>
    <dc:creator>Jim Paris</dc:creator>
    <dc:date>2013-05-10T17:09:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2415">
    <title>Re: CPU Overhead?</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2415</link>
    <description>&lt;pre&gt;Hi,

I presume, you are going to run your application on ARM running Linux. If
so, D2XX driver cannot offer that kind of throughput. This is because
"overlapped I/O" is not supported by D2XX driver on Linux. And you need
overlapped I/O to sustain this kind of data rate. The reason is data fetch
from FT2232 occurs only when FT_Read is executed. But due to application
scheduling, your application, and hence the FT_Read function, may not be
executed for sometime. The on-board 4kB buffer of FT2232 will provide some
space to breath. But if it is full, and your application is not yet
scheduled, then you will loose data.

The way out is "overlapped I/O", which registers a number of transfers to
the operating system, which can execute in the background as a parallel
thread. These transfers are controlled by the device driver and interrupts.
Hence they are less likely to be affected by the scheduler.

Overlapped I/O is a Windows term. On Linux, they are replaced by
asynchronous I/O. The latest libFTDI offers asynchro&lt;/pre&gt;</description>
    <dc:creator>Krishnendu Chatterjee</dc:creator>
    <dc:date>2013-05-10T06:35:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2414">
    <title>CPU Overhead?</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2414</link>
    <description>&lt;pre&gt;Hello,

I am writing an application that uses the FTDI FT2232H chip to read RS-485
data.  The data is coming in at a fairly high rate (6 Mbps baud rate with
an effective data rate of about 3.2 Mbps).  My application must read in the
data and then process it as quickly as possible.  Latency is frowned up,
however I can generally accept up to 250 ms.

I have interfaced with the device using the D2XX driver provided by FTDI.
Overall, the application works fine from a functional standpoint.  However,
the D2XX driver alone pulls about 45% CPU usage.  I have to run the
application on an embedded ARM processor, which runs at 720 Mhz, so I don't
have alot of horsepower per say.  I am using the FT_Read() function in a
loop to extract the data and then pass it along.  In a simple application I
wrote to test the driver, I extract the data in the loop and just write it
to a file.  This alone pulls the 45% CPU usage figure (numbers from the top
command) referenced earlier.

My problem is that I just received requirements&lt;/pre&gt;</description>
    <dc:creator>Peter Witkowski</dc:creator>
    <dc:date>2013-05-10T04:16:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2413">
    <title>Re: ftdi_eeprom link failure</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2413</link>
    <description>&lt;pre&gt;
Am 30.04.2013 um 10:54 schrieb xantares 09:

It works, although I have to point CMake to the correct prefix of the library with -DCMAKE_PREFIX_PATH="/opt/local" (where MacPorts puts its stuff by default). Otherwise CMake uses the system library, which has the wrong architecture:
ld: warning: in /usr/local/lib/libintl.dylib, missing required architecture x86_64 in file.

A note for OS X users to use CMAKE_PREFIX_PATH in README.build when they have their libs elsewhere (i.e. use a packet manager) would be nice.

Best regards,
Hannes
--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   


&lt;/pre&gt;</description>
    <dc:creator>Hannes Weisbach</dc:creator>
    <dc:date>2013-04-30T10:48:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2412">
    <title>RE: ftdi_eeprom link failure</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2412</link>
    <description>&lt;pre&gt;
Here is a cleaner way ; detect libintl if separate from libc, could someone test this on osx:
https://gitorious.org/libftdi/libftdi/commit/8b860ed08731ae6ab639973735b376de3694a199

Regards,
M.



       

--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   

&lt;/pre&gt;</description>
    <dc:creator>xantares 09</dc:creator>
    <dc:date>2013-04-30T08:54:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2411">
    <title>RE: ftdi_eeprom link failure</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2411</link>
    <description>&lt;pre&gt;




Indeed, it does break the build on linux ; intl is shipped as part of libc6.
Intl should be treated as a conditional dependency of confuse.

Here is a patch.

Regards.

M.




       

--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   

&lt;/pre&gt;</description>
    <dc:creator>xantares 09</dc:creator>
    <dc:date>2013-04-30T08:19:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2410">
    <title>ftdi_eeprom link failure</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2410</link>
    <description>&lt;pre&gt;Hello libftdi-developers.

I wanted to compile libftdi1 under OS X 10.6.8 and I followed README.build to do so. However, ftdi_eeprom failed to link with the following error:
Linking C executable ftdi_eeprom
Undefined symbols:
  "_libintl_setlocale", referenced from:
      _cfg_init in libconfuse.a(confuse.o)
      _cfg_init in libconfuse.a(confuse.o)
  "_libintl_bindtextdomain", referenced from:
      _cfg_init in libconfuse.a(confuse.o)
  "_libintl_dgettext", referenced from:
      _cfg_include in libconfuse.a(confuse.o)
      _cfg_getopt in libconfuse.a(confuse.o)
      _cfg_getopt in libconfuse.a(confuse.o)
      _cfg_setopt in libconfuse.a(confuse.o)
      _cfg_setopt in libconfuse.a(confuse.o)
      _cfg_parse_internal in libconfuse.a(confuse.o)
      _cfg_parse_internal in libconfuse.a(confuse.o)

A bit of research suggested, that "-lintl" may be missing from the linker flags. So I added it and everything compiled and linked fine. I added the library to ftdi_eeprom/CMakeList.txt (see attached patch).

&lt;/pre&gt;</description>
    <dc:creator>Hannes Weisbach</dc:creator>
    <dc:date>2013-04-27T15:41:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2409">
    <title>Re: Re: libftdi patches : [Patch 5/5] : Adding partial support for FT230X</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2409</link>
    <description>&lt;pre&gt;Hi Uwe,

On Thursday, 11. April 2013 10:36:33 Uwe Bonnes wrote:

since you are more familiar with the eeprom code than myself,
do you see a problem with the new code? For me it looks ok,
though I don't have a device handy to test it.

Thomas


--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   


&lt;/pre&gt;</description>
    <dc:creator>Thomas Jarosch</dc:creator>
    <dc:date>2013-04-26T12:43:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2408">
    <title>Re: read/write timeout in C++ wrapper</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2408</link>
    <description>&lt;pre&gt;Hi Jochen,

On Monday, 22. April 2013 12:27:36 Jochen Sprickerhof wrote:

thanks, applied! I've also made the get_xxx() functions const.

Cheers,
Thomas


--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   


&lt;/pre&gt;</description>
    <dc:creator>Thomas Jarosch</dc:creator>
    <dc:date>2013-04-26T12:42:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2407">
    <title>Re: API changes between 0.xx and 1.0?</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2407</link>
    <description>&lt;pre&gt;Hi Chris,

On Tuesday, 23. April 2013 09:30:48 Chris Morgan wrote:

API changes are minimal. If you don't use the old, hackish async
mode interface (which you had to enable during compile time),
upgrading should be smooth.

Thomas


--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   


&lt;/pre&gt;</description>
    <dc:creator>Thomas Jarosch</dc:creator>
    <dc:date>2013-04-26T12:39:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2406">
    <title>Re: [PATCH] Typo in error message of ftdi_write_eeprom_location.</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2406</link>
    <description>&lt;pre&gt;Hi Matthias,

On Tuesday, 16. April 2013 10:33:49 Matthias Brugger wrote:

somehow the patch didn't apply.

Nonetheless I've fixed this bug in several places now
and gave credit to you in the commit message.

Thanks,
Thomas


--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   


&lt;/pre&gt;</description>
    <dc:creator>Thomas Jarosch</dc:creator>
    <dc:date>2013-04-26T12:36:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2405">
    <title>Re: FT2232H shows up like FT4232H</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2405</link>
    <description>&lt;pre&gt;Matthias,

Thanks for letting me know.  I will take a look into it.

Cheers,

Newell




--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   &lt;/pre&gt;</description>
    <dc:creator>Newell Jensen</dc:creator>
    <dc:date>2013-04-24T16:33:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2404">
    <title>Re: FT2232H shows up like FT4232H</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2404</link>
    <description>&lt;pre&gt;2013/4/23 Newell Jensen &amp;lt;newell.jensen&amp;lt; at &amp;gt;gmail.com&amp;gt;:

FTDI customer service worte me this message. It din't helped me, but
maybe it will help you:
"If the FT2232H appears as an FT4232H, it means that the VCCIO pins
are not all powered correctly. Please check your connections and
ensure that all VCCIO pins are powered. It is not sufficient to power
only some of them."

Cheers,
Matthias






--
motzblog.wordpress.com

--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   


&lt;/pre&gt;</description>
    <dc:creator>Matthias Brugger</dc:creator>
    <dc:date>2013-04-24T14:43:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2403">
    <title>Re: FT2232H shows up like FT4232H</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2403</link>
    <description>&lt;pre&gt;I just joined the mailing list and the email below has gone
unanswered.  I am also faced with this problem but I get this issue
intermittently.  That is, sometimes when I plug in the FT2232H mini
module, it sometimes comes up as FT2232H and other times it comes up
as FT4232H (he mentions FT4323H but mine comes up as FT4232H). When I
run:


$ lsusb -v


and take a look at the output I see distinct differences when it comes
up as FT2232H vs. FT4232H (obviously).  Has anyone else ran into this
issue before?  I can easily reproduce this.  I mean I guess I could
keep plugging and unplugging my mini module until it shows up as
FT2232H but this seems like something buggy to begin with that I would
like to wrap my head around.


Thanks.

********************************************************************

Hello all,

I have problem with my FT2232H chip:
I want to use it to communicate via sync FIFO. As the data sheet
suggests you have to reprogram the eeprom, but when using the tool
from libftdi I found that the ch&lt;/pre&gt;</description>
    <dc:creator>Newell Jensen</dc:creator>
    <dc:date>2013-04-23T16:53:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2402">
    <title>API changes between 0.xx and 1.0?</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2402</link>
    <description>&lt;pre&gt;Hi.

I was wondering if there were any api changes between 0.xx and 1.0?
I'm starting to look at using libftdi and wasn't sure if I could start
using my distributions built in version of 0.19 and then seamlessly
upgrade to 1.0 or if I should start at the 1.0 version to avoid api
differences.

Chris

--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   


&lt;/pre&gt;</description>
    <dc:creator>Chris Morgan</dc:creator>
    <dc:date>2013-04-23T13:30:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2401">
    <title>read/write timeout in C++ wrapper</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2401</link>
    <description>&lt;pre&gt;Hi,

the C++ wrapper has no function to set the read/write timouts of the
ftdi_context. The attached patch fixes this. Would be great to have you
could merge it upstream.

Cheers Jochen


--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   &lt;/pre&gt;</description>
    <dc:creator>Jochen Sprickerhof</dc:creator>
    <dc:date>2013-04-22T10:27:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2400">
    <title>Re: Why can not set DTR and RTS?</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2400</link>
    <description>&lt;pre&gt;Addition, my libftdi is libftdi 0.17 and 0.19

2013/4/19 linux fddl &amp;lt;fddllinux&amp;lt; at &amp;gt;gmail.com&amp;gt;:

--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   


&lt;/pre&gt;</description>
    <dc:creator>linux fddl</dc:creator>
    <dc:date>2013-04-19T02:58:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2399">
    <title>Re: Why can not set DTR and RTS?</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2399</link>
    <description>&lt;pre&gt;Thanks for your answer.


  In fact, I just try to set RTS and DTR high/low. It's just a test
code, [return f] just because I want to know whether there is any
error, hope to simplify my debug. I'm so sorry... This may wast your
time. Really sorry...
The really problem is I can not set RTS and DTR.


  The following code is a reducing one.


There is no error output from console.
Also the output is not what I want. For example, if I hope a
high/low/high/low level,
I can not see this from my board's pins.
But, but if I write datas, I can see the output from TX, though I'm
not sure whether it is right,
I think it's not the key.

I calls ftdi_set_bitmode() twice, but even calls any one of them,
still not work. I also tried to
call none of them, but ...

Other things I want to know is:
Do I need to config my chip(FTDI 232RL) with FT_Prog? For example, IO?
Or, should I use cbus?

-----------------------------------------------------------------------------------------------------------------------

#include &amp;lt;stdi&lt;/pre&gt;</description>
    <dc:creator>linux fddl</dc:creator>
    <dc:date>2013-04-19T01:35:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2398">
    <title>ftdi_convert_baudrate()</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2398</link>
    <description>&lt;pre&gt;Hi,
I have tried libftdi with 2 port FT2232C chip. Only problem I found was
that the ftdi_set_baudrate() function did not work with second port. The
port allways operated on highest baudrate. Looking closer on
ftdi_convert_baudrate() i found out that the ftdi-&amp;gt;index is aplied only on
high speed devices. I have modified the code like this and it works fine.
Is that ok ?

if (ftdi-&amp;gt;type == TYPE_2232H ||
        ftdi-&amp;gt;type == TYPE_4232H ||
        ftdi-&amp;gt;type == TYPE_232H )
    {
        *index = (unsigned short)(encoded_divisor &amp;gt;&amp;gt; 8);
    }
    else
    {
        *index = (unsigned short)(encoded_divisor &amp;gt;&amp;gt; 16);
    }
    *index &amp;amp;= 0xFF00;
    *index |= ftdi-&amp;gt;index;

Best regards,
Peter Holly


--
libftdi - see http://www.intra2net.com/en/developer/libftdi for details.
To unsubscribe send a mail to libftdi+unsubscribe&amp;lt; at &amp;gt;developer.intra2net.com   &lt;/pre&gt;</description>
    <dc:creator>peter holly</dc:creator>
    <dc:date>2013-04-18T19:16:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2397">
    <title>Re: Why can not set DTR and RTS?</title>
    <link>http://permalink.gmane.org/gmane.comp.hardware.libftdi.general/2397</link>
    <description>&lt;pre&gt;Hm, ok I use ftdi_setflowctrl and it works for me. Just having a quick glance at
your code reveals the following line:

if (f = ftdi_setrts(ftdi, SIO_SET_DTR_HIGH))
return f;

which immediately returns after setting RTS high not touching DTR as the
following lines of that function suggests. (the assignment did work -&amp;gt; true) You
probably meant something like 

if ((f = ftdi_setrts(ftdi, SIO_SET_DTR_HIGH))!=0)
return f;

but that is just guessing. Reducing your code to the bare minimum, no option
parsing, no error handling, no DBG might help to reveal the cause of your problem.
But since you do error handling etc. , could you be a bit more verbose on the
actual result of your program? (console output, return values, expected output,
pin state on your board, ...) 

Cheers
Matthias 

Am Thu, 18 Apr 2013 16:54:14 +0800
schrieb linux fddl &amp;lt;fddllinux&amp;lt; at &amp;gt;gmail.com&amp;gt;:



&lt;/pre&gt;</description>
    <dc:creator>Matthias Janke</dc:creator>
    <dc:date>2013-04-18T10:28:50</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.hardware.libftdi.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.hardware.libftdi.general</link>
  </textinput>
</rdf:RDF>
