blob: e3065b01a9f7824da60dcee6fb0d8745edb8c1c4 [file] [log] [blame]
Patrick Venture46470a32018-09-07 19:26:25 -07001#pragma once
2
Chris Austen41a4b312015-10-25 03:45:42 -05003#include <stdint.h>
4
Tom Josephb647d5b2017-10-31 17:25:33 +05305/** @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);