1 #pragma once 2 3 #include <stdint.h> 4 5 /** @brief Read eSEL data into a string 6 * 7 * @param[in] filename - filename of file containing eSEL 8 * 9 * @return On success return the eSEL data 10 */ 11 std::string readESEL(const char* filename); 12 13 /** @brief Create a log entry with maintenance procedure 14 * 15 * @param[in] procedureNum - procedure number associated with the log entry 16 */ 17 void createProcedureLogEntry(uint8_t procedureNum); 18