-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsensors-data-source.c
129 lines (111 loc) · 3.17 KB
/
sensors-data-source.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
/*
* SPDX-FileCopyrightText: 2021 Samuel Cuella <[email protected]>
*
* This file is part of SoFIS - an open source EFIS
*
* SPDX-License-Identifier: GPL-2.0-only
*/
#include <gps.h>
#include <stdio.h>
#include <stdlib.h>
#include "sensors-data-source.h"
#include "sensors/gps-sensor.h"
#ifndef BNO080_DEV
#define BNO080_DEV "/dev/i2c-1"
#endif
#ifndef ENABLE_MOCK_GPS
#define ENABLE_MOCK_GPS 0
#endif
static bool sensors_data_source_frame(SensorsDataSource *self, uint32_t dt);
static SensorsDataSource *sensors_data_source_dispose(SensorsDataSource *self);
static DataSourceOps sensors_data_source_ops = {
.frame = (DataSourceFrameFunc)sensors_data_source_frame,
.dispose = (DataSourceDisposeFunc)sensors_data_source_dispose
};
SensorsDataSource *sensors_data_source_new(void)
{
SensorsDataSource *self;
self = calloc(1, sizeof(SensorsDataSource));
if(self){
if(!sensors_data_source_init(self)){
free(self);
return NULL;
}
}
return self;
}
SensorsDataSource *sensors_data_source_init(SensorsDataSource *self)
{
if(!data_source_init(DATA_SOURCE(self), &sensors_data_source_ops))
return NULL;
if(!bno080_init(&self->imu, 0x4b, BNO080_DEV)){
printf("Couldn't initialize BNO0808 device, bailing out\n");
exit(EXIT_FAILURE);
}
bno080_enable_feature(&self->imu, ROTATION_VECTOR);
if(!gps_sensor_init(&self->gps, "localhost", DEFAULT_GPSD_PORT)){
printf("Couldn't initialize GPS, bailing out\n");
exit(EXIT_FAILURE);
}
#if !ENABLE_MOCK_GPS
gps_sensor_start(&self->gps);
#else
data_source_set_location(
DATA_SOURCE(self), &(LocationData){
.super.latitude = 45.215470,
.super.longitude = 5.844828,
.altitude = 718.267245
}
);
data_source_set_attitude(
DATA_SOURCE(self), &(AttitudeData){
.roll = 0,
.pitch = 0,
.heading = 43.698940
}
);
#endif
return self;
}
static SensorsDataSource *sensors_data_source_dispose(SensorsDataSource *self)
{
bno080_dispose(&self->imu);
return self;
}
static bool sensors_data_source_frame(SensorsDataSource *self, uint32_t dt)
{
double roll, pitch, yaw;
double heading;
double lat, lon, alt;
bool rv;
if(dt != 0 && dt < (1000/25)) //One update per 1/25 second
return false;
bno080_hpr(&self->imu, &heading, &pitch, &roll);
data_source_set_attitude(
DATA_SOURCE(self), &(AttitudeData){
.roll = roll,
.pitch = pitch,
.heading = heading
}
);
#if !ENABLE_MOCK_GPS
gps_sensor_get_fix(&self->gps, &lat, &lon, &alt);
data_source_set_location(
DATA_SOURCE(self), &(LocationData){
.super.latitude = lat,
.super.longitude = lon,
.altitude = alt*3.281 /*Comes in meters(gps), must be in feets*/
}
);
#else
data_source_set_location(
DATA_SOURCE(self), &(LocationData){
.super.latitude = 45.215470,
.super.longitude = 5.844828,
.altitude = 718.267245
}
);
#endif
DATA_SOURCE(self)->has_fix = true;
return true;
}