Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 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_STRING("SYS_INFO_PASSTHRUENABLED_split", telemetryValue);
}
}
}
Expand Down Expand Up @@ -2751,7 +2751,7 @@ 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);
}


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_STRING("HDMI_INFO_tv_off_split", "Rx Sense Status OFF");
_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_STRING("SYS_INFO_4KResolution_split", telemetryValue);
}

#ifdef HAS_ONLY_COMPOSITE
Expand Down
Loading