Terrapin-Rocket-Team / Multi-Mission-Flight-Software

An arudino library used by the Terrapin Rocket Team as the foundation of the team's flight software.
4 stars 0 forks source link

Add creation of an error file on the sd card #16

Closed mallamacimj closed 1 month ago

mallamacimj commented 8 months ago

-everytime the code is run, there is data csv created on the sd called datalog_x.csv where the x is the lowest number above the highest x on an existing datafile. We want a similar functionality on a file called datalog_x.log -this .log will essentially be a serial output -this file should be easily written to using a print function (ex. datalogPrint("random string") and datalogPrintln("random string)) -once this functionality is created (likely implemented Utilities/sdCard.h and Utilities/sdCard.cpp) we need to add log print statements to the following:

mallamacimj commented 6 months ago

created the file but haven't added the print statements yet