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