Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions rpc/srv/dsAudio.c
Original file line number Diff line number Diff line change
Expand Up @@ -2086,7 +2086,7 @@ void AudioConfigInit()
{
char telemetryValue[128] = {0};
snprintf(telemetryValue, sizeof(telemetryValue), "dsSetStereoMode The HDMI ARC Port Audio Settings Mode is %d", _srv_HDMI_ARC_Audiomode);
TELEMETRY_EVENT_STRING("SYS_INFO_PASSTHRUENABLED", telemetryValue);
TELEMETRY_EVENT("SYS_INFO_PASSTHRUENABLED", 1);
}
}
}
Expand Down Expand Up @@ -2751,7 +2751,8 @@ IARM_Result_t _dsSetStereoMode(void *arg)
if(param->toPersist){
char telemetryValue[128] = {0};
snprintf(telemetryValue, sizeof(telemetryValue), "The HDMI Audio Mode Setting From Persistent is %d", param->toPersist);
TELEMETRY_EVENT_STRING("SYS_INFO_Userpassthruenable", telemetryValue);
// TELEMETRY_EVENT_STRING("SYS_INFO_Userpassthruenable_split", telemetryValue);
TELEMETRY_EVENT_INT("SYS_INFO_Userpassthruenable", 1);
}


Expand Down
2 changes: 1 addition & 1 deletion rpc/srv/dsDisplay.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ void _dsDisplayEventCallback(intptr_t handle, dsDisplayEvent_t event, void *even

case dsDISPLAY_RXSENSE_OFF:
INT_INFO("Rx Sense Status OFF !!!!!!!! ..\r\n");
TELEMETRY_EVENT_STRING("HDMI_INFO_tv_off", "Rx Sense Status OFF");
TELEMETRY_EVENT_INT("HDMI_INFO_tv_off", 1);
_eventData.data.hdmi_rxsense.status = dsDISPLAY_RXSENSE_OFF ;
_eventId = IARM_BUS_DSMGR_EVENT_RX_SENSE;
break;
Expand Down
2 changes: 1 addition & 1 deletion rpc/srv/dsVideoPort.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ IARM_Result_t dsVideoPortMgr_init()
{
char telemetryValue[128] = {0};
snprintf(telemetryValue, sizeof(telemetryValue), "The Persistent HDMI resolution read is %s", _dsHDMIResolution.c_str());
TELEMETRY_EVENT_STRING("SYS_INFO_4KResolution", telemetryValue);
TELEMETRY_EVENT_INT("SYS_INFO_4KResolution", 1);
}

#ifdef HAS_ONLY_COMPOSITE
Expand Down
Loading