blob: 5cb826e166c3c4b594646bea403095bc0c0f6d98 [file] [log] [blame]
Chris Austen41a4b312015-10-25 03:45:42 -05001#include <stdint.h>
2
Tom Josephb647d5b2017-10-31 17:25:33 +05303void send_esel(uint16_t recordid) ;
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 */
11std::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 */
17void createProcedureLogEntry(uint8_t procedureNum);