| 70 | #endif |
| 71 | |
| 72 | SerialPortState getSerialPortState(std::string const &port) { |
| 73 | if (port.empty()) { |
| 74 | return SERIAL_MISSING; |
| 75 | } |
| 76 | return getSerialPortStateImpl(port); |
| 77 | } |
| 78 | |
| 79 | std::string normalizeSerialPort(std::string const &port) { |
| 80 | if (port.empty()) { |
no test coverage detected