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