forked from s60sc/ESP32-CAM_MJPEG2SD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelemetry.cpp
193 lines (169 loc) · 6.66 KB
/
telemetry.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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
//
// Telemetry recording to storage during camera recording
// Formatted as CSV file for presentation in spreadsheet
// Sensor data obtained from user supplied libraries and code
// Need to check 'Use telemetry recording' under Peripherals button on Edit Config web page.
// and have downloaded relevant device libraries.
// Best used on ESP32S3, not tested on ESP32
// s60sc 2023
#include "appGlobals.h"
#include <Wire.h>
TaskHandle_t telemetryHandle = NULL;
bool teleUse = false;
int teleInterval = 1;
static char* teleBuf; // telemetry data buffer
static bool capturing = false;
static char teleFileName[FILE_NAME_LEN];
static bool scanI2C();
static bool checkI2C(byte addr);
/*************** USER TO MODIFY CODE BELOW for REQUIRED SENSORS ******************/
// example code for BMP280 and MPU9250 I2C sensors on GY-91 board
//#define USE_GY91 // uncomment to support GY-91 board (BMP280 + MPU9250)
// user defined header row, first field is always Time, row must end with \n
#define TELEHEADER "Time,Temperature (C),Pressure (mb),Altitude (m),Heading,Pitch,Roll\n"
#define BUF_OVERFLOW 100 // set to be max size of formatted telemetry row
// if require I2C, define which pins to use for I2C bus
#define I2C_SDA 20
#define I2C_SCL 21
#ifdef USE_GY91
#include <BMx280I2C.h>
#define BMP_ADDRESS 0x76
#define STD_PRESSURE 1013.25 // standard pressure mb at sea level
#define DEGREE_SYMBOL "\xC2\xB0"
BMx280I2C bmp280(BMP_ADDRESS);
#include "MPU9250.h"
// accel axis orientation on GY-91:
// - X : short side (pitch)
// - Y : long side (roll)
// - Z : up (yaw from true N)
#define MPU_ADDRESS 0x68
// Note internal AK8963 magnetometer is at address 0x0C
#define LOCAL_MAG_DECLINATION (4 + 56/60) // see https://www.magnetic-declination.com/
MPU9250 mpu9250;
#endif
static bool setupSensors() {
// setup required sensors
#ifdef USE_GY91
Wire.begin(I2C_SDA, I2C_SCL); // join I2C bus as master
LOG_INF("I2C started at %dHz", Wire.getClock());
if (!scanI2C()) return false;
if (bmp280.begin()) {
LOG_INF("BMP280 available");
// set defaults
bmp280.resetToDefaults();
bmp280.writeOversamplingPressure(BMx280MI::OSRS_P_x16);
bmp280.writeOversamplingTemperature(BMx280MI::OSRS_T_x16);
} else {
LOG_WRN("BMP280 not available at address 0x%02X", BMP_ADDRESS);
return false;
}
if (mpu9250.setup(MPU_ADDRESS)) {
mpu9250.setMagneticDeclination(LOCAL_MAG_DECLINATION);
mpu9250.selectFilter(QuatFilterSel::MADGWICK);
mpu9250.setFilterIterations(15);
LOG_INF("MPU9250 calibrating, leave still");
mpu9250.calibrateAccelGyro();
// LOG_INF("Move MPU9250 in a figure of eight until done");
// delay(2000);
// mpu9250.calibrateMag();
LOG_INF("MPU9250 available");
}
else {
LOG_WRN("MPU9250 not available at address 0x%02X", MPU_ADDRESS);
return false;
}
#endif
return false;
}
static size_t getSensorData(size_t highPoint) {
// get sensor data and format as csv row in buffer
#ifdef USE_GY91
bmp280.measure();
if (bmp280.hasValue()) {
float bmpPressure = bmp280.getPressure() * 0.01; // pascals to mb/hPa
float bmpAltitude = 44330.0 * (1.0 - pow(bmpPressure / STD_PRESSURE, 1.0 / 5.255)); // altitude in meters
highPoint += sprintf(teleBuf + highPoint, "%0.1f,%0.1f,%0.1f,", bmp280.getTemperature(), bmpPressure, bmpAltitude);
} else highPoint += sprintf(teleBuf + highPoint, "-,-,-,");
if (mpu9250.update()) highPoint += sprintf(teleBuf + highPoint, "%0.1f,%0.1f,%0.1f,", mpu9250.getYaw(), mpu9250.getPitch(), mpu9250.getRoll());
#endif
return highPoint;
}
/*************** LEAVE CODE BELOW AS IS ******************/
static void telemetryTask(void* pvParameters) {
while (true) {
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
capturing = true;
uint32_t sampleInterval = 1000 * (teleInterval < 1 ? 1 : teleInterval);
// open storage file
if (STORAGE.exists(TELETEMP)) STORAGE.remove(TELETEMP);
File teleFile = STORAGE.open(TELETEMP, FILE_WRITE);
// write header row to buffer
size_t highPoint = sprintf(teleBuf, "%s", TELEHEADER);
// loop while camera recording
while (capturing) {
uint32_t startTime = millis();
// write current time for this row
time_t currEpoch = getEpoch();
highPoint += strftime(teleBuf + highPoint, 10, "%H:%M:%S,", localtime(&currEpoch));
// get data from sensors
highPoint = getSensorData(highPoint);
// add newline to finish row
highPoint += sprintf(teleBuf + highPoint, "\n");
// if marker overflows buffer, write to storage
if (highPoint >= RAMSIZE) {
highPoint -= RAMSIZE;
teleFile.write((uint8_t*)teleBuf, RAMSIZE);
// push overflow to buffer start
memcpy(teleBuf, teleBuf+RAMSIZE, highPoint);
}
// wait for next collection interval
while (millis() - sampleInterval < startTime) delay(10);
}
// capture finished, write remaining buff to storage
if (highPoint) teleFile.write((uint8_t*)teleBuf, highPoint);
teleFile.close();
// rename temp file to specific file name
STORAGE.rename(TELETEMP, teleFileName);
LOG_INF("Saved telemetry file %s", teleFileName);
}
}
void prepTelemetry() {
// called by app initialisation
if (teleUse) {
teleBuf = psramFound() ? (char*)ps_malloc(RAMSIZE + BUF_OVERFLOW) : (char*)malloc(RAMSIZE + BUF_OVERFLOW);
if (setupSensors()) xTaskCreate(&telemetryTask, "telemetryTask", TELEM_STACK_SIZE, NULL, 3, &telemetryHandle);
else teleUse = false;
LOG_INF("Telemetry recording %s available", teleUse ? "is" : "NOT");
debugMemory("prepTelemetry");
}
}
void startTelemetry() {
// called when camera recording started
if (teleUse && telemetryHandle != NULL) xTaskNotifyGive(telemetryHandle); // wake up task
}
void stopTelemetry(const char* fileName) {
// called when camera recording stopped
if (teleUse) {
strcpy(teleFileName, fileName);
// derive telemetry file name from avi file name with csv extension
changeExtension(teleFileName, CSV_EXT);
capturing = false; // stop task
}
}
static bool checkI2C(byte addr) {
// check if device present at address
Wire.beginTransmission(addr);
return !Wire.endTransmission(true);
}
static bool scanI2C() {
// identify addresses of active I2C devices
int numDevices = 0;
for (byte address = 0; address < 127; address++) {
if (checkI2C(address)) {
LOG_INF("I2C device present at address: 0x%02X", address);
numDevices++;
}
}
LOG_INF("I2C devices found: %d", numDevices);
return (bool)numDevices;
}