| 293 | } |
| 294 | |
| 295 | std::string OHDPlatform::to_string() const { |
| 296 | std::stringstream ss; |
| 297 | ss << "OHDPlatform:[" << x_platform_type_to_string(platform_type) << "]"; |
| 298 | return ss.str(); |
| 299 | } |
| 300 | |
| 301 | bool OHDPlatform::is_rpi() const { |
| 302 | return platform_type >= 10 && platform_type < 20; |
no test coverage detected