1 #pragma once
2
3 namespace analyzer
4 {
5
6 /**
7 * @brief Analyze and isolate hardware errors
8 *
9 * If any error conditions are found on the host isolate the hardware
10 * component that caused the error(s).
11 */
12 void analyzeHardware();
13
14 } // namespace analyzer
15