在QT中寫ipx&com程式
如題:
找遍了所有的書,有哪位大大寫過或哪本書有相關的資料,
請不吝指導 .... tks!
allanyueh 寫:QT的serial communication
請先將ftp://ftp.trolltech.com/contrib/qextserialport.tar.gz下載並解開
1. 將qextserialbase.h qextserialbase.cpp及posix_qextserialport.h posix_qextserialport.cpp放在程式路徑下
2
//test.cpp
#include <qapplication.h>
#include <qlabel.h>
#include "posix_qextserialport.h"
int main(int argc,char **argv)
{
Qapplication myApp(argc,argv);
QLabel myLabel(“Hello”,0);
Posix_QextSerialPort *RS232=new posix_QextSerialPort(“/dev/ttyS0”);
RS232->setBaudRate(BAUD19200); //com1,19200,n,8,1
RS232->setFlowControl(FLOW_OFF);
RS232->setParity(PAR_NONE);
RS232->setDataBits(DATA_8 );
RS232->setStopBits(STOP_1);
if (RS232->open()) {
RS232->putch(‘a’);
RS232->putch(‘a’);
RS232->flush();
RS232->close();
}
myApp.setMainWidget(&myLabel);
myLabel.show();
return myApp.exec();
}
正在瀏覽這個版面的使用者:沒有註冊會員 和 1 位訪客