Initial version. Can fly simple mission defined in JSON file.

Please check README.md how to install dependencies and run the application.
This commit is contained in:
Tuomas Järvinen
2024-03-18 22:31:38 +01:00
commit f7acface7f
20 changed files with 1354 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#include <iostream>
#include "az_fly.h"
#include "az_mission.h"
using namespace std;
int main(int argc, char *argv[])
{
if (argc != 2) {
cout << "Plese give mission file as an argument\n";
return 1;
}
AzMission mission(argv[1]);
cout << mission;
AzFly fly(mission);
fly.initialize();
fly.start();
return 0;
}