blob: c25ead3362e8133d719f76cbc9bd1a72b6366c9c [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
Patrick Venture0b02be92018-08-31 11:55:55 -07005void send_esel(uint16_t recordid);
Tom Josephb647d5b2017-10-31 17:25:33 +05306
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 */
13std::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 */
19void createProcedureLogEntry(uint8_t procedureNum);