Hi,
I have an am37x-evm board and Sitara SDK ("downloads.ti.com/.../").
I use QT to create a small application and I am able to connect Wi-Fi hot-spot. I connect my am37x-evm board using putty. In terminal window I can use ping command to ping google. I also created a Ping DialogWindow in QT as shown below. At the moment when I click the ping button using below code the ping operation is works.
My problem is that I don't know how to use below code or similar to make a ping operation GUI window. Does anyone knows how to use QT to develop Wi-Fi ping application for am37x-evm board?
I contacted to QT form. And they advice me to come back here ("TI E2E™ Community") due to Sitara SDK. In this link ("e2e.ti.com/.../1731147 Mr. Biser Gatchev-XID advice me to get help from "wireless_connectivity" form.
Kind Regards
Code:
// WIFI PING TEST BUTTON void DialogWIFI::on_PushButtonPing_clicked() { system("ping -c 10 www.google.com > ping.txt"); }
Window: