forked from JanekOstendorf/THOMAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
55 lines (39 loc) · 1.13 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
-- HAUPTPROGRAMM --
*/
/* INCLUDES */
// MotorControl-Klasse
#include "MotorControl.h"
// TelemetryReceiver-Klasse
#include "TelemetryReceiver.h"
using namespace THOMAS;
// THOMASException-Klasse
#include "THOMASException.h"
// C++-iostream-Header
// Enthält die wichtigen Konsolen-Ein-/Ausgabe-Streams.
#include <iostream>
// UNIX-Standard-Funktionen [Non-Standard]
// Die sleep()-Funktion wird benötigt.
#include <unistd.h>
/* FUNKTIONEN */
// Programm-Einstiegsfunktion.
int main(int argc, char **argv)
{
// Arduino Protokoll-Klasse starten
ArduinoProtocol *arduino = new ArduinoProtocol();
arduino->Run();
// Motorsteuerung starten
MotorControl *motorControl = new MotorControl();
motorControl->Run(arduino);
// Lasermessung instanzieren
LaserMeasurement *laser = new LaserMeasurement();
// TelemetryReceiver starten
TelemetryReceiver *teleRecv = new TelemetryReceiver();
teleRecv->Run(arduino, laser);
// Programm laufen lassen, Prozessor nicht unnötig belasten (alles läuft in separaten Threads)
// TODO: Programm-Befehle per Tastatur etc.
while(true)
sleep(2);
// Programm erfolgreich beendet
return 0;
}