Changed FIFO pipes to UDP.

This commit is contained in:
Nffj84
2024-07-04 15:20:48 +03:00
parent 5af90ac918
commit 89c68aeb67
10 changed files with 99 additions and 346 deletions
+2 -6
View File
@@ -5,11 +5,7 @@ int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
RemoteControl remoteControl;
#ifdef FIFO_TEST
remoteControl.startTest();
#else
remoteControl.sendData(200, 200, 400, 400);
#endif
RemoteControl::sendData(200, 200, 400, 400);
return 0;
}