up vote 12 down vote favorite
7
share [g+] share [fb]

Is there any serial port facilities in Qt ?

If not, which crossplatform (desirable) libraries (for working with serial port and, maybe, with other I/O ports), do you recommend ?

link|improve this question

feedback

4 Answers

up vote 11 down vote accepted

Take a look at the Project QextSerialPort.

link|improve this answer
1  
works very well for me. – Thomi Sep 22 '09 at 12:16
I'm using this at the moment and it works great! Saved me tons of time. – Steve Lazaridis Jun 1 '11 at 14:29
feedback

Well, there's always Boost.

In Boost there is a great Async I/O library called ASIO. It can perform operations in all sorts of endpoints, including serial ports.

There is a great example about how to build a minicom-like application using Boost::Asio, that you can use to see if ASIO will attend your needs.

Since boost works on all platforms/compilers under the sun, the cross platform requirement can be checked.

Cheers.

link|improve this answer
feedback

Use QSerialDevice

link|improve this answer
1  
Is GPL the only license this is released under? – dwj Nov 4 '10 at 0:13
Looks like a great library, seems to work better much than qextserialport, but the GPL kinda kills it for most real applications. Maybe at least a commercial license of some sort... – radix07 Nov 10 '10 at 22:00
feedback

Here is a Qt serial library, works on Win, WinCE, Linux (i386 and ARM), Mac...

http://gitorious.org/inbiza-labs/qserialport

Also, it is based on QIODevice for a native feel, with it you can, if you like, direct serial communication onto TCPIP with little no no effort.

It is LGPL also... enjoy.

link|improve this answer
Qt Serial Library is LGPL: gitorious.org/inbiza-labs/qserialport/blobs/master/COPYING – Etienne Savard Jun 1 '11 at 2:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.