在Beagle板上设置IP地址

时间:2017-09-05 07:40:12

标签: ip-address tcp-ip beagleboard qtcpsocket

我想通过TCP / IP将bbx15与设备连接。该设备的IP:10.0.0.8;端口号:11100。我使用QTcpSocket类来编码:

 #include <QTcpSocket>
 mSocket = new QTcpSocket(this);
 mSocket ->connectToHost("10.0.0.8",11100);
 if(mSocket->waitForConnected(1000))
 {
   QMessageBox::information(this,"Server","Connected!");
}
else
{
    QMessageBox::critical(this,"Error",mSocket->errorString());
}

但它还没有奏效。我不知道如何设置bbx15的IP地址?当我将电缆插入插座时,我无法启动电路板,直到我插上电源并重新启动。谢谢。

0 个答案:

没有答案