forked from s60sc/ESP32-CAM_MJPEG2SD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
telemetry.cpp
250 lines (221 loc) · 9.03 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
//
// Telemetry data recorded to storage during camera recording
// Formatted as CSV file for presentation in spreadsheet
// and as a SRT file to provide video subtitles when used with a media player
// 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"
#if INCLUDE_TELEM
#include <Wire.h>
#define NUM_BUFF 2
#define MAX_SRT_LEN 128 // store each srt entry, for subtitle streaming
TaskHandle_t telemetryHandle = NULL;
bool teleUse = false;
static int teleInterval = 1;
static char* teleBuf[NUM_BUFF]; // csv and srt telemetry data buffers
size_t highPoint[NUM_BUFF]; // indexes to buffers
static bool capturing = false;
static char teleFileName[FILE_NAME_LEN];
char srtBuffer[MAX_SRT_LEN];
size_t srtBytes = 0;
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
// if pins not correctly defined for board, spurious results will occur
#ifndef I2C_SDA
#define I2C_SDA 20
#define I2C_SCL 21
#endif
#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
bool res = true;
#ifdef USE_GY91
Wire.begin(I2C_SDA, I2C_SCL); // join I2C bus as master
LOG_INF("I2C started at %dkHz", Wire.getClock() / 1000);
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 res;
}
static void getSensorData() {
// get sensor data and format as csv row & srt entry in buffers
#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[0] += sprintf(teleBuf[0] + highPoint[0], ",%0.1f,%0.1f,%0.1f", bmp280.getTemperature(), bmpPressure, bmpAltitude);
highPoint[1] += sprintf(teleBuf[1] + highPoint[1], " %0.1fC %0.1fmb %0.1fm", bmp280.getTemperature(), bmpPressure, bmpAltitude);
} else for (int i=0; i< 2; i++) highPoint[i] += sprintf(teleBuf[i] + highPoint[i], ",-,-,-");
if (mpu9250.update()) {
highPoint[0] += sprintf(teleBuf[0] + highPoint[0], ",%0.1f,%0.1f,%0.1f", mpu9250.getYaw(), mpu9250.getPitch(), mpu9250.getRoll());
highPoint[1] += sprintf(teleBuf[1] + highPoint[1], " %0.1f %0.1f %0.1f", mpu9250.getYaw(), mpu9250.getPitch(), mpu9250.getRoll());
}
#endif
}
/*************** LEAVE CODE BELOW AS IS ******************/
void storeSensorData(bool fromStream) {
// can be called from telemetry task or streaming task
if (fromStream) {
// called fron streaming task
if (capturing) return; // as being stored by telemetry task
else highPoint[0] = highPoint[1] = 0;
}
size_t startData = highPoint[1];
getSensorData();
if (!srtBytes) {
srtBytes = min(highPoint[1] - startData, (size_t)MAX_SRT_LEN);
memcpy(srtBuffer, teleBuf[1] + startData, srtBytes);
}
}
static void telemetryTask(void* pvParameters) {
while (true) {
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
capturing = true;
int srtSeqNo = 1;
uint32_t srtTime = 0;
char timeStr[10];
uint32_t sampleInterval = 1000 * (teleInterval < 1 ? 1 : teleInterval);
// open storage file
if (STORAGE.exists(TELETEMP)) STORAGE.remove(TELETEMP);
if (STORAGE.exists(SRTTEMP)) STORAGE.remove(SRTTEMP);
File teleFile = STORAGE.open(TELETEMP, FILE_WRITE);
File srtFile = STORAGE.open(SRTTEMP, FILE_WRITE);
// write CSV header row to buffer
highPoint[0] = sprintf(teleBuf[0], "%s", TELEHEADER);
highPoint[1] = 0;
// loop while camera recording
while (capturing) {
uint32_t startTime = millis();
// write header for this subtitle
formatElapsedTime(timeStr, srtTime, true);
highPoint[1] += sprintf(teleBuf[1] + highPoint[1], "%d\n%s,000 --> ", srtSeqNo++, timeStr);
srtTime += sampleInterval;
formatElapsedTime(timeStr, srtTime, true);
highPoint[1] += sprintf(teleBuf[1] + highPoint[1], "%s,000\n", timeStr);
// write current time for csv row and srt entry
time_t currEpoch = getEpoch();
for (int i = 0; i < NUM_BUFF; i++) highPoint[i] += strftime(teleBuf[i] + highPoint[i], 10, "%H:%M:%S", localtime(&currEpoch));
// get and store data from sensors
storeSensorData(false);
// add newline to finish row
highPoint[0] += sprintf(teleBuf[0] + highPoint[0], "\n");
highPoint[1] += sprintf(teleBuf[1] + highPoint[1], "\n\n");
// if marker overflows buffer, write to storage
for (int i = 0; i < NUM_BUFF; i++) {
if (highPoint[i] >= RAMSIZE) {
highPoint[i] -= RAMSIZE;
if (i) srtFile.write((uint8_t*)teleBuf[i], RAMSIZE);
else teleFile.write((uint8_t*)teleBuf[i], RAMSIZE);
// push overflow to buffer start
memcpy(teleBuf[i], teleBuf[i]+RAMSIZE, highPoint[i]);
}
}
// wait for next collection interval
while (millis() - sampleInterval < startTime) delay(10);
}
// capture finished, write remaining buff to storage
if (highPoint[0]) teleFile.write((uint8_t*)teleBuf[0], highPoint[0]);
if (highPoint[1]) srtFile.write((uint8_t*)teleBuf[1], highPoint[1]);
teleFile.close();
srtFile.close();
// rename temp files to specific file names using avi file name with relevant extension
changeExtension(teleFileName, CSV_EXT);
STORAGE.rename(TELETEMP, teleFileName);
changeExtension(teleFileName, SRT_EXT);
STORAGE.rename(SRTTEMP, teleFileName);
LOG_INF("Saved %d entries in telemetry files", srtSeqNo);
}
}
void prepTelemetry() {
// called by app initialisation
if (teleUse) {
teleInterval = srtInterval;
for (int i=0; i < NUM_BUFF; i++) teleBuf[i] = psramFound() ? (char*)ps_malloc(RAMSIZE + BUF_OVERFLOW) : (char*)malloc(RAMSIZE + BUF_OVERFLOW);
if (setupSensors()) xTaskCreate(&telemetryTask, "telemetryTask", TELEM_STACK_SIZE, NULL, TELEM_PRI, &telemetryHandle);
else teleUse = false;
LOG_INF("Telemetry recording %s available", teleUse ? "is" : "NOT");
debugMemory("prepTelemetry");
}
}
bool startTelemetry() {
// called when camera recording started
bool res = true;
if (teleUse && telemetryHandle != NULL) xTaskNotifyGive(telemetryHandle); // wake up task
else res = false;
return res;
}
void stopTelemetry(const char* fileName) {
// called when camera recording stopped
if (teleUse) {
strcpy(teleFileName, fileName);
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;
}
#endif