-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTask_DataLogger.c
365 lines (314 loc) · 11.4 KB
/
Task_DataLogger.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
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
#include "Task_DataLogger.h"
#include "same70-base_16/RevolveDrivers/pio.h"
#include "Dash_drivers/sd_mmc/sd_mmc.h"
#include "Dash_drivers/sd_mmc/fat/ff.h"
#include "Dash_drivers/sd_mmc/ctrl_access.h"
#include "Dash_drivers/mcanFreeRTOSWrapper.h"
//#include "Task_USBMSC.h"
#include "Dash_drivers/IO_DashInit.h"
#include <stdio.h>
#include <string.h>
SemaphoreHandle_t file_access_mutex = NULL;
static void getPresetParametersFromFile(char file_name[]);
static struct presetParameterStruct presetParametersToMenuTask;
Ctrl_status status;
FRESULT res, filePresent;
FATFS fs;
FIL file_object;
FILINFO fno;
/*
-Both the USB MSC task and datalogger task accesses the SD card but this is implemented in a mutual exclusion way so no synchronisation is needed
-Disk initialiation and FS init should be done before the task scheduler runs according to a post at "http://www.freertos.org/FreeRTOS_Support_Forum_Archive/August_2009/freertos_FreeRTOS_and_Filesystem_integration_3367836.html"
*/
static void createFileName(char file_name[]);
static void createOpenSeekNewFile();
static void logDataToCurrentFile();
static void deleteAllFiles();
struct SensorMsg {
struct Can_message_t can_msg;
uint32_t time_stamp;
};
struct SensorMsg SensorPacketReceive = {
.can_msg.data.u64 = 0,
.can_msg.dataLength = 0,
.can_msg.messageID = 0,
.time_stamp = 0
};
static char dataLogger_buffer[BUFFER_LENGTH] = "";
static char can_data_string[17] = "";
enum EDataloggerStates dataloggerState = DATALOGGER_IDLE;
QueueHandle_t xDataloggerCommandQueue = NULL;
QueueHandle_t xPresetQueue = NULL;
UINT byte_written;
static uint32_t timeStamp = 0;
static uint32_t offset = 0;
static uint8_t current_message_length = 0;
uint8_t SD_card_is_full = 0;
uint32_t file_size_byte_counter = 0;
uint8_t number_of_files_sdcard = 0;
static uint32_t preallocation_counter = 0;
char preset_file_name[LEN_PRESET_FILENAME] = "";
static char fileName[10] = "";
TaskHandle_t dataLoggerHandle = NULL;
uint32_t start_time = 0;
uint32_t stop_time = 0;
void dataLoggerTask() {
memset(&fs, 0, sizeof(FATFS));
res = f_mount(LUN_ID_SD_MMC_0_MEM, &fs);
if (FR_INVALID_DRIVE == res) {
//failed
}
enum EDataloggerCommands currentCommand = NO_COMMAND;
// Create and start logging to a new file automatically
xSemaphoreTake(file_access_mutex,portMAX_DELAY);
createOpenSeekNewFile();
dataloggerState = DATALOGGER_LOGGING;
while(1) {
if (xQueueReceive(xDataloggerCommandQueue,¤tCommand,0) != pdPASS) {
currentCommand = NO_COMMAND;
}
else {
uint8_t heo = 5;
}
switch (dataloggerState) {
case DATALOGGER_IDLE:
switch (currentCommand) {
case START_LOGGING:
createOpenSeekNewFile();
dataloggerState = DATALOGGER_LOGGING;
break;
case DELETE_ALL_FILES:
deleteAllFiles();
break;
case GET_PARAMETERS_FROM_FILE:
getPresetParametersFromFile(preset_file_name);
break;
}
if ( (pio_readPin(DETECT_USB_PIO,DETECT_USB_PIN) == 1 ) && (dataLoggerHandle == xSemaphoreGetMutexHolder(file_access_mutex)) ) {
dataloggerState = DATALOGGER_USB_CONNECTED;
xSemaphoreGive(file_access_mutex);
// Disable CAN interrupts while USB is connected
//can_disableRXInterrupt(CAN0_IRQn);
//can_disableRXInterrupt(CAN1_IRQn);
}
// Send command to datalogger to extract data from SD card and send it to task_menu via a queue ?
vTaskDelay(40/portTICK_RATE_MS);
break;
case DATALOGGER_LOGGING:
if ( (pio_readPin(DETECT_USB_PIO,DETECT_USB_PIN) == 1 ) && (dataLoggerHandle == xSemaphoreGetMutexHolder(file_access_mutex)) ) {
dataloggerState = DATALOGGER_USB_CONNECTED;
f_truncate(&file_object);
f_close(&file_object);
xSemaphoreGive(file_access_mutex);
// Disable CAN interrupts if USB is connected
//can_disableRXInterrupt(CAN0_IRQn);
//can_disableRXInterrupt(CAN1_IRQn);
break;
}
switch(currentCommand) {
case CLOSE_FILE:
offset = 0;
f_truncate(&file_object);
f_close(&file_object);
dataloggerState = DATALOGGER_IDLE;
break;
default:
logDataToCurrentFile();
break;
}
// The delay is in the queuereceive function now.
//vTaskDelay(1); // This needs confirmation based on speed requirements etc.
break;
case DATALOGGER_USB_CONNECTED:
if ( (pio_readPin(DETECT_USB_PIO,DETECT_USB_PIN) == 0) && (dataLoggerHandle != xSemaphoreGetMutexHolder(file_access_mutex)) ) {
// If USB is not connected and the datalogger doesnt own the file mutex -> aquire it
xSemaphoreTake(file_access_mutex,portMAX_DELAY);
dataloggerState = DATALOGGER_IDLE;
// Leaving USB CONNECTED STATE : ENABLE CAN INTERRUPTS
//can_enableRXInterrupt(CAN0_IRQn);
//can_enableRXInterrupt(CAN1_IRQn);
}
vTaskDelay(5/portTICK_RATE_MS);
break;
}
}
}
static void deleteAllFiles() {
//fno.fdate = 5;
fno.fname[13] = "";
//fno.lfname = 0;
char test_name[10] = "";
number_of_files_sdcard = 0;
for (uint8_t i = 0; i < 100; i++) {
snprintf(test_name,10, "log%02d.txt",i);
filePresent = f_stat(test_name, &fno);
if (filePresent == FR_OK) {
f_unlink(test_name); // Delete the file if it exists
}
else {
break;
}
}
}
static void createOpenSeekNewFile() {
createFileName(fileName);
res = f_open(&file_object, (char const *)fileName, FA_OPEN_ALWAYS | FA_WRITE);
f_lseek(&file_object,PREALLOCATION_BYTES);
f_lseek(&file_object,0);
//f_truncate(&file_object);
file_size_byte_counter = 0;
offset = 0;
}
static void logDataToCurrentFile() {
//if (xQueueReceive(xDataLoggerQueue,&SensorPacketReceive,0) == pdPASS) { // Blocks until it has received an element
if (xQueueReceive(xDataLoggerQueue,&SensorPacketReceive,1/portTICK_RATE_MS) == pdPASS) { // Blocks until it has received an element
//can_sendMessage(MCAN0, txmsg);
if (offset >= (BUFFER_LENGTH-MAX_MESSAGE_SIZE)) {
offset = 0;
file_size_byte_counter += 1;
preallocation_counter += 1;
taskENTER_CRITICAL();
start_time = RTT->RTT_VR;
//In case of *bw is less than btw, it means the volume got full during the write operation
f_write(&file_object,dataLogger_buffer, BUFFER_LENGTH, &byte_written);
if ( byte_written < BUFFER_LENGTH) {
// DISK IS FULL !!
dataloggerState = DATALOGGER_IDLE;
*dataLogger_buffer = 0;
stop_time = RTT->RTT_VR;
SD_card_is_full = 1;
taskEXIT_CRITICAL();
}
else {
stop_time = RTT->RTT_VR;
f_sync(&file_object);
*dataLogger_buffer = 0;
taskEXIT_CRITICAL();
}
//benchmsg.data.u32[0] = (BUFFER_LENGTH)/(stop_time-start_time);
//can_sendMessage(MCAN0,benchmsg);
}
else if (preallocation_counter > NEW_PREALLOCATION_THRESHOLD) {
f_lseek(&file_object, f_tell(&file_object) + PREALLOCATION_BYTES );
f_lseek(&file_object, f_tell(&file_object) - PREALLOCATION_BYTES );
preallocation_counter = 0;
}
if (SensorPacketReceive.can_msg.dataLength == 0) {
// Handle special case of empty message. Add a zero to make revolve analyze happy
current_message_length = FIXED_MESSAGE_LENGTH + 2;
}
else {
current_message_length = FIXED_MESSAGE_LENGTH + (SensorPacketReceive.can_msg.dataLength*2);
}
// for (int i = 0; i < SensorPacketReceive.can_msg.dataLength; i++){
// sprintf(can_data_string, "%s%02X", can_data_string, SensorPacketReceive.can_msg.data.u8[i]);
// }
//
if ( SensorPacketReceive.can_msg.dataLength == 0) {
sprintf(can_data_string, "%02x",0x00);
}
else {
for (uint8_t i = 0; i < SensorPacketReceive.can_msg.dataLength;i++) {
sprintf(can_data_string, "%s%02x",can_data_string, SensorPacketReceive.can_msg.data.u8[i]);
}
}
snprintf(dataLogger_buffer + offset, current_message_length,"[%08lx,{%03lx:%s}]\n",SensorPacketReceive.time_stamp, SensorPacketReceive.can_msg.messageID,can_data_string);
*can_data_string = 0;
offset += current_message_length;
}
}
static void createFileName(char file_name[]) {
//FRESULT fr;
//FILINFO fno;
fno.fname[13] = "";
char test_name[10] = "";
for (uint8_t i = 0; i < 100; i++) {
snprintf(test_name,10, "log%02d.txt",i);
filePresent = f_stat(test_name, &fno);
//filePresent = f_stat("log00.txt", &fno);
if (filePresent != FR_OK) {
//strncpy(file_name,test_name,5);
snprintf(file_name,10,"log%02d.txt",i);
number_of_files_sdcard = i+1;
break;
}
}
}
static void getPresetParametersFromFile(char file_name[]) {
uint32_t integer_part;
uint32_t decimal_part;
char integer_part_s[10];
char decimal_part_s[10];
char number[20];
char parameter_name[20];
char * ptr_to_token;
char * ptr_to_token_parameter_name;
char line[50];
res = f_open(&file_object, (char const *)file_name, FA_OPEN_EXISTING | FA_READ);
if (res == FR_OK) {
while ( f_gets(line, sizeof line, &file_object) ) {
ptr_to_token_parameter_name = strtok(line,":");
strcpy(parameter_name,ptr_to_token_parameter_name);
strcpy(number, line + strlen(parameter_name));
// Get the integer part
ptr_to_token = strtok(number,".");
strcpy(integer_part_s,ptr_to_token);
// Get the decimal part
ptr_to_token = strtok(NULL,".");
strcpy(decimal_part_s,ptr_to_token);
integer_part = atoi(integer_part_s);
decimal_part = atoi(decimal_part_s);
float f = integer_part + (float) decimal_part/100;
switch (line[0]) {
case '1':
presetParametersToMenuTask.p_term = f;
break;
case '2':
presetParametersToMenuTask.i_term = f;
break;
case '3':
presetParametersToMenuTask.d_term = f;
break;
case '4':
presetParametersToMenuTask.max_min_term = f;
break;
case '5':
presetParametersToMenuTask.max_decrease_term = f;
break;
case '6':
presetParametersToMenuTask.desired_slip_term = f;
break;
case '7':
presetParametersToMenuTask.max_integral_term = f;
break;
}
}
// Close file
f_close(&file_object);
// Filled the preset struct.. Send it to task menu
xQueueSendToBack(xPresetQueue,&presetParametersToMenuTask,0);
}
}
//Note to self: Use str function is set to 0 which means no string functions are used in fatfs
// f_unlink to delete files
/*1 : always write in multiples of 4 bytes or sectors:
2 : Finn ut sector size. Skriv i multiples av sector sizes
3 : Benchmarken til chanfat viser at å skrive 16 KB er 12 ganger så raskt som en sektor
4 : Kan jeg i det hele tatt lage en buffer på 16KB i programmet mitt nå ?
5 : Prøv preallokering i bolker. Start med 100 mb.. når nærmer seg det. Fyll på med nye 100 mb
*/
//Worst case scenario of 2 mbit/s of 8 bit messages on can buses -> 952 KB/S for sd card to write
// Add new line to written data
//Bench results:
//4KB buffers -> 1.5 -2 MB/s
//16KB buffers -> 3-4 MB/s
// 16 KB write bench med fopen og fclose. Ender opp på 500 KBIT etter at filen begynner å bli stor
// 16 KB Only fsync -> 1.8 mb/s and 80 KB/s -> overloaded at 2000 messages / second.
// If preallocation is used the speed is more stable and overload happens at somewhere around 5000-6000 messages / second
// If i know the size of each write I can automatically move the write area pointer to the correct EOF and append.
// This means i can use f_seek with the correct pointer offset to get the correct EOF very fast
// Research preallocation of files if this solution is not fast enough
// Change the filename construction
// Open and append and then close for each buffer write
// Ready to write to the file //
//Get Can messages from queue and transfer them to SD card