forked from khoohuibo/serial-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
132 lines (101 loc) · 3.74 KB
/
main.c
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#include <stdio.h>
#include <stdint.h>
#include <unistd.h>
#include <string.h>
#include <getopt.h>
#include <stdlib.h>
#include <libpq-fe.h>
#include "arduino-serial/arduino-serial-lib.h"
#include "config.h"
char AzimuthData[100];
char ElevationData[100];
char sensorData[2000];
void recieve_azi_el(PGconn *conn)
{
PGresult *res = PQexec(conn
, "SELECT schedule.time, spacecraft.name, round(degrees(observations.azimuth)), round(degrees(observations.elevation)), spacecraft.frequency_downlink-(spacecraft.frequency_downlink*(observations.relative_velocity/3e8)) AS downlink, spacecraft.frequency_uplink-(spacecraft.frequency_uplink*(observations.relative_velocity/3e8)) AS uplink FROM (SELECT * FROM schedule WHERE time > NOW() ORDER BY time LIMIT 1) AS schedule INNER JOIN observations ON schedule.spacecraft=observations.spacecraft AND schedule.time=observations.time INNER JOIN spacecraft ON schedule.spacecraft=spacecraft.id;");
if(PQresultStatus(res) != PGRES_TUPLES_OK)
{
printf("Error: Next Point Select query failed!\n");
printf("%s\n", PQresStatus(PQresultStatus(res)));
printf("%s\n", PQresultErrorMessage(res));
return;
}
int rows = PQntuples(res);
if(rows == 0)
{
printf("Error: No Next point found\n");
PQclear(res);
return;
}
printf("%s: %d, %d, [%s] Downlink: %.6f MHz, Uplink: %.6f MHz\n"
, PQgetvalue(res,0,0)
, atoi(PQgetvalue(res,0,2))
, atoi(PQgetvalue(res,0,3))
, PQgetvalue(res,0,1)
, atof(PQgetvalue(res,0,4))
, atof(PQgetvalue(res,0,5))
);
strncpy(AzimuthData, PQgetvalue(res,0,2), 100);
strncpy(ElevationData, PQgetvalue(res,0,3), 100);
PQclear(res);
}
int main(int argc, char const *argv[]) {
fprintf(stdout,
"PSQL to Arduino test\n"
"Hubert Khoo 2018\n"
);
char config_filename[100];
strncpy(config_filename, "config.ini", 100);
printf("Loading config from file: %s\n", config_filename);
if(!config_load(&config, config_filename))
{
printf("Error loading config from file! Exiting..\n");
return 1;
}
PGconn *conn = PQconnectdb(config.db_conn_string);
if (PQstatus(conn) == CONNECTION_BAD) {
fprintf(stderr, "Connection to database failed: %s\n",
PQerrorMessage(conn));
PQfinish(conn);
return 1;
}
printf("Connected to Server (server: %d, client: %d)\n"
, PQserverVersion(conn), PQlibVersion()
);
int fd = serialport_init("/dev/ttyACM0", 9600);
while(1) {
recieve_azi_el(conn);
sleep(5);
int bytesSent_1 = serialport_write(fd, AzimuthData);
if(bytesSent_1 == -1) {
printf("Error: Azimuth Data failed to send!\n" );
} else {
printf("Azimuth : %s sent\n", AzimuthData);
}
sleep(5);
int bytesReceived_1 = serialport_read_until(fd, sensorData, ':', 2000, 200);
if (bytesReceived_1 == -1){
printf("Error: Serial Read function failed!\n");
}
printf("From Arduino Serial Debug : %s\n", sensorData);
sleep(3);
memset(sensorData, 0, sizeof(sensorData));
int bytesSent_2 = serialport_write(fd, ElevationData);
if(bytesSent_2 == -1) {
printf("Error: Elevation Data failed to send!\n" );
}
else {
printf("Elevation : %s sent\n", ElevationData);
}
sleep(5);
int bytesReceived_2 = serialport_read_until(fd, sensorData, ':', 2000, 200);
if (bytesReceived_2 == -1){
printf("Error: Serial Read function failed!\n");
}
printf("From Arduino Serial Debug : %s\n", sensorData);
sleep(3);
memset(sensorData, 0, sizeof(sensorData));
}
return 0;
}