]> git.vomp.tv Git - vompclient.git/blob - src/telem.cc
Created basic telemetry system
[vompclient.git] / src / telem.cc
1 /*
2     Copyright 2024 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP.  If not, see <https://www.gnu.org/licenses/>.
18 */
19
20 #include <string.h>
21 #include <stdlib.h>
22
23 #include "log.h"
24
25 #include "telem.h"
26
27 UDP4 Telemetry::udp;
28
29 void Telemetry::init()
30 {
31 #if TELEM_ENABLED
32   LogNT::getInstance()->debug("Telem", "Init");
33   udp.init(0);
34
35   // TODO load target IP / port from config
36
37 #endif
38 }
39
40 void Telemetry::message(u4 messageNumber, i4 data)
41 {
42   char* buffer;
43   asprintf(&buffer, "%c%c%c%c%i", 1, 1, 1, 1, data);
44   memcpy(buffer, (const void*)&messageNumber, 4);
45   udp.send("", 7777, buffer, strlen(&buffer[4])+4);
46   free(buffer);
47 }
48
49 void Telemetry::message(u4 messageNumber, i8 data)
50 {
51   char* buffer;
52   asprintf(&buffer, "%c%c%c%c%lli", 1, 1, 1, 1, data);
53   memcpy(buffer, (const void*)&messageNumber, 4);
54   udp.send("", 7777, buffer, strlen(&buffer[4])+4);
55   free(buffer);
56 }
57
58 void Telemetry::message(u4 messageNumber, u8 data)
59 {
60   char* buffer;
61   asprintf(&buffer, "%c%c%c%c%llu", 1, 1, 1, 1, data);
62   memcpy(buffer, (const void*)&messageNumber, 4);
63   udp.send("", 7777, buffer, strlen(&buffer[4])+4);
64   free(buffer);
65 }
66