Chris Austen | 41a4b31 | 2015-10-25 03:45:42 -0500 | [diff] [blame] | 1 | #include <stdint.h> |
| 2 | |
Tom Joseph | b647d5b | 2017-10-31 17:25:33 +0530 | [diff] [blame] | 3 | void 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 | */ |
| 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); |