Skip to content
Snippets Groups Projects
Commit d81caa77 authored by bertucci's avatar bertucci
Browse files

Adding necessary changes to backend to populate data log

parent bfb98aa4
No related branches found
No related tags found
No related merge requests found
......@@ -1005,6 +1005,11 @@ static void quad_recv(int index) {
}
fwrite((char *) data, sizeof(char), m.data_len, quadlog_file);
break;
case SEND_RT_ID:
quadlog_file = fopen("quad_log_data.txt", "w");
fwrite((char *) data, sizeof(char), m.data_len, quadlog_file);
fclose(quadlog_file);
break;
case RESPPARAM_ID:
case RESPSOURCE_ID:
case RESPOUTPUT_ID:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment