Sends a ping command to the adapter, to check if it's responding. True when the ping was successful, false otherwise
| 157 | /// </summary> |
| 158 | /// <returns>True when the ping was successful, false otherwise</returns> |
| 159 | bool PingAdapter(void) |
| 160 | { |
| 161 | return !!m_libCec && m_libCec->PingAdapter(); |
| 162 | } |
| 163 | |
| 164 | /// <summary> |
| 165 | /// Start the bootloader of the CEC adapter. Closes the connection when successful. |
no test coverage detected