Files
autopilot/misc/camera/a8_remote/main.cpp
T
Nffj84 0b4b2f9f10 Added sendData function call to remote main.
Commented out more things that are currently not needed.
2024-07-03 16:10:24 +03:00

16 lines
288 B
C++

#include <QCoreApplication>
#include "remoteControl.hpp"
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
return 0;
}