mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 23:26:33 +00:00
0b4b2f9f10
Commented out more things that are currently not needed.
16 lines
288 B
C++
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;
|
|
}
|