diff --git a/quad/src/quad_app/log_data.c b/quad/src/quad_app/log_data.c index 61c9bdf997a348b64528bf91174a24fcc238f459..4ad8410b526249d0499b33095a249183e187df04 100644 --- a/quad/src/quad_app/log_data.c +++ b/quad/src/quad_app/log_data.c @@ -185,7 +185,7 @@ void printLogging(hardware_t *hardware_struct, log_t* log_struct, parameter_t* p // Comment header safe_sprintf_cat(&buf, "# MicroCART On-board Quad Log\n# Sample size: %d\n", arrayIndex); // Header names for the pre-defined values - safe_sprintf_cat(&buf, "time\taccel_x\taccel_y\taccel_z\tgyro_x\tgyro_y\tgyro_z"); + safe_sprintf_cat(&buf, "%Time\taccel_x\taccel_y\taccel_z\tgyro_x\tgyro_y\tgyro_z"); int i; // Print all the recorded block parameters @@ -207,7 +207,7 @@ void printLogging(hardware_t *hardware_struct, log_t* log_struct, parameter_t* p // Send units header buf.size = 0; - safe_sprintf_cat(&buf, "s\tG\tG\tG\trad/s\trad/s\trad/s"); // The pre-defined ones + safe_sprintf_cat(&buf, "&s\tG\tG\tG\trad/s\trad/s\trad/s"); // The pre-defined ones safe_sprintf_cat(&buf, units_output.str); safe_sprintf_cat(&buf, units_param.str); safe_sprintf_cat(&buf, "\n");