ShihaoLiu
ShihaoLiu

Reputation: 101

How to develop Serial Port with Qt Embedded

I'm developping an software with Qt Embedded 4.7.1. Now, I need communicate with other device via Serial Port (sush as RS232), if anyone has some advice how to do that? Is there such a class in QtCore?

Thanks a lot.

Upvotes: 4

Views: 801

Answers (2)

Jonaias
Jonaias

Reputation: 365

Qt 5.1(next release) includes QtSerialPort as a new module. It supports Windows, Mac and Linux!

QtSerialPort info: http://qt-project.org/wiki/QtSerialPort

Upvotes: 1

Raiv
Raiv

Reputation: 5781

There is no such class in QtCore, but there is QextSerialPort project. I'm not sure it will work with your OS,but you may at least look at it.

Upvotes: 3

Related Questions