Start the bootloader of the CEC adapter. Closes the connection when successful. True when the command was sent successfully, false otherwise.
| 166 | /// </summary> |
| 167 | /// <returns>True when the command was sent successfully, false otherwise.</returns> |
| 168 | bool StartBootloader(void) |
| 169 | { |
| 170 | return !!m_libCec && m_libCec->StartBootloader(); |
| 171 | } |
| 172 | |
| 173 | /// <summary> |
| 174 | /// Transmit a raw CEC command over the CEC line. |
nothing calls this directly
no test coverage detected