Patrick Venture | 46470a3 | 2018-09-07 19:26:25 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Chris Austen | 41a4b31 | 2015-10-25 03:45:42 -0500 | [diff] [blame] | 3 | #include <stdint.h> |
| 4 | |
Tom Joseph | b647d5b | 2017-10-31 17:25:33 +0530 | [diff] [blame] | 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); |