Skip to content

Commit

Permalink
Merge branch 'rdkcentral:sprint/25Q1' into feature/GetTVSupportedAPI_…
Browse files Browse the repository at this point in the history
…InputParamCompliance
  • Loading branch information
slkanthi authored Feb 5, 2025
2 parents 065f9dc + 71d45c2 commit d9f084f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
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
4 changes: 4 additions & 0 deletions Monitor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file.

* For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README.

## [2.0.1] - 2025-02-04
### Changed
- Bring back the Delay changes in Thread Restart Logic

## [2.0.0] - 2024-12-12
### Changed
- Synced Monitor Plugin with WebPlatformForEmbedded/ThunderNanoServicesRDK/tree/R4_4/Monitor
Expand Down
4 changes: 2 additions & 2 deletions Monitor/Monitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#define API_VERSION_NUMBER_MAJOR 2
#define API_VERSION_NUMBER_MINOR 0
#define API_VERSION_NUMBER_PATCH 0
#define API_VERSION_NUMBER_PATCH 1

namespace WPEFramework {
namespace Plugin {
Expand Down Expand Up @@ -163,4 +163,4 @@ namespace Plugin {
return (result);
}
}
}
}
4 changes: 2 additions & 2 deletions Monitor/Monitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ POP_WARNING()
_service->Notify(message);
_parent.event_action(callsign, "Activate", "Automatic");
TRACE(Trace::Error, (_T("Restarting %s again because we detected it misbehaved."), callsign.c_str()));
Core::IWorkerPool::Instance().Submit(PluginHost::IShell::Job::Create(service, PluginHost::IShell::ACTIVATED, PluginHost::IShell::AUTOMATIC));
Core::IWorkerPool::Instance().Schedule(Core::Time::Now().Add(5000), PluginHost::IShell::Job::Create(service, PluginHost::IShell::ACTIVATED, PluginHost::IShell::AUTOMATIC));
}
}
}
Expand Down Expand Up @@ -1049,4 +1049,4 @@ POP_WARNING()
}
}

#endif // __MONITOR_H
#endif // __MONITOR_H

0 comments on commit d9f084f

Please sign in to comment.