]> sigrok.org Git - libserialport.git/commit
Temporarily disable USE_TERMIOX code (breaks the lib).
authorUwe Hermann <redacted>
Fri, 22 Nov 2013 15:07:32 +0000 (16:07 +0100)
committerUwe Hermann <redacted>
Fri, 22 Nov 2013 15:44:19 +0000 (16:44 +0100)
commit1d5d2a166f582e06aa2848fe9ca9c33f85acd45d
treef3ca812af6d03c417442d184e9b469a3d76fc69b
parent24abdb680fa5ab99b2e58b0196082c111f5baabc
Temporarily disable USE_TERMIOX code (breaks the lib).

On some systems the use of the code enabled by USE_TERMIOX leads to a
non-working sp_open() which breaks all functionality provided by the lib.

Thus, temporarily disable that code until the details are investigated.

This has been tested with a serial port DMM and the OLS logic analyzer
on an x86 64bit Linux system with kernel version 3.11. The code compiles
fine but doesn't work at runtime. The configure output included:

checking for struct termios2... yes
checking for struct termiox... yes

The root cause for the problem is that the ioctl(fd, TCGETX, data) call in
get_flow() returns -1 ("Invalid argument"), which in turn lets sp_open()
return SP_ERR_FAIL.
serialport.c