1

私と同じ問題を抱えている人を見たことがありますが、解決策はうまくいきません。

これが私のコードです:

10ミリ秒ごとにUDPフレームを送信するプログラムを書いています。私のプログラムがどのように動作するかは次のとおりです。

私は持っていclient classます:

//Constructor
clientSupervision::clientSupervision()
{
}

void clientSupervision::sendDataUDP(){
    //Create a frame and send it
...
}

void clientSupervision::sendDataUDPTimer(int timer){
    QTimer *tempsEnvoieTrameSupervision = new QTimer();//Create a timer
    tempsEnvoieTrameSupervision->setInterval(timer);//Set the interval

    //Mise en place des connections
    QObject::connect (tempsEnvoieTrameSupervision,SIGNAL (timeout()),this, SLOT (envoiTrameSupervision())); //Connect the timer to the function
    tempsEnvoieTrameSupervision->start();// Start the timer
}

//Call sendDataUDP
void clientSupervision::envoiTrameSupervision(){
    std::cout << "Envoi de la trame de supervision";
    sendDataUDP();
}

次に、これを私の中で使用しますmain

int main(int argc, char *argv[])
{
    clientSupervision c;
    c.sendDataUDPTimer(10);
    QCoreApplication a(argc, argv);

    return a.exec();
}

タイマーが機能しないのはなぜですか? 他の場所で起動する必要がありますか?

ありがとう。

4

0 に答える 0