diff --git a/groundStation/src/backend/format_rt.c b/groundStation/src/backend/format_rt.c new file mode 100644 index 0000000000000000000000000000000000000000..da032d16c7a1710c1066b65ccf0fde536f63f401 --- /dev/null +++ b/groundStation/src/backend/format_rt.c @@ -0,0 +1,12 @@ + +#include "format_rt.h" + +/* + This file contains the method used to format real time data sent to the quad into a text file + that can be read by the Data Analysis Tool located in the controls directory for the purpose + of displaying flight data information to the user. +*/ +int write_formatted_data(char * filename, SensorRTFlags_t * flags, uint32_t * data) +{ + return 0; +}