blob: 922179f93ecbf52f2b2480e52006c573251ff7fc [file] [log] [blame]
Ben Tyner0205f3b2020-02-24 10:24:47 -06001#pragma once
2
Ben Tynerb1ebfcb2020-05-08 18:52:48 -05003#include <map>
4#include <string>
5
Ben Tyner0205f3b2020-02-24 10:24:47 -06006namespace analyzer
7{
8
9/**
10 * @brief Analyze and isolate hardware errors
11 *
12 * If any error conditions are found on the host isolate the hardware
13 * component that caused the error(s).
14 */
Ben Tynerb1ebfcb2020-05-08 18:52:48 -050015
Ben Tynerdbeaf792020-05-14 08:27:18 -050016bool analyzeHardware(std::map<std::string, std::string>& i_errors);
Ben Tyner0205f3b2020-02-24 10:24:47 -060017
18} // namespace analyzer