Browse Source

Try to fix problems with opening the CEC adapter

This is not really documented, but it seems like we need to use ComName
instead of ComPort to Open()
Tobias Hieta 9 năm trước cách đây
mục cha
commit
4303b24057
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/input/InputCEC.cpp

+ 1 - 1
src/input/InputCEC.cpp

@@ -150,7 +150,7 @@ bool InputCECWorker::openAdapter()
     QLOG_INFO() << "libCEC found" << devicesCount << "CEC adapters.";
 
     // open first adapter
-    m_adapterPort = devices[0].strComPath;
+    m_adapterPort = devices[0].strComName;
     if (m_adapter->Open(m_adapterPort.toStdString().c_str()))
     {
       QLOG_INFO() << "Device " << devices[0].strComName << "was successfully openned";