Skip to content

Commit

Permalink
Merge pull request #6004 from Srigayathry/sprint/hdmicec_xione_6620
Browse files Browse the repository at this point in the history
SERXIONE-6620: CEC is not working intermittently, Unable to wake up the TV
  • Loading branch information
apatel859 authored Feb 4, 2025
2 parents a421816 + 4d104a0 commit c5176c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion HdmiCecSource/HdmiCecSource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ namespace WPEFramework
break;
case IARM_BUS_CECMGR_EVENT_STATUS_UPDATED:
{
IARM_Bus_CECMgr_Status_Updated_Param_t *evtData = new IARM_Bus_CECMgr_Status_Updated_Param_t;
IARM_Bus_CECMgr_Status_Updated_Param_t *evtData = (IARM_Bus_CECMgr_Status_Updated_Param_t *)data;
if(evtData)
{
std::thread worker(threadCecStatusUpdateHandler,evtData->logicalAddress);
Expand Down Expand Up @@ -863,6 +863,8 @@ namespace WPEFramework
{
logicalAddress = logicalAddr;
logicalAddressDeviceType = logicalAddrDeviceType;
if(smConnection)
smConnection->setSource(logicalAddress); // update initiator LA
}
}
catch (const std::exception& e)
Expand Down

0 comments on commit c5176c8

Please sign in to comment.