diff --git a/rpc/srv/dsAudio.c b/rpc/srv/dsAudio.c index d35315b3..4c54659e 100755 --- a/rpc/srv/dsAudio.c +++ b/rpc/srv/dsAudio.c @@ -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); } } } @@ -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); } diff --git a/rpc/srv/dsDisplay.c b/rpc/srv/dsDisplay.c index 4fdc8cee..7580251d 100644 --- a/rpc/srv/dsDisplay.c +++ b/rpc/srv/dsDisplay.c @@ -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; diff --git a/rpc/srv/dsVideoPort.c b/rpc/srv/dsVideoPort.c index 84cf6bea..0c2066c2 100644 --- a/rpc/srv/dsVideoPort.c +++ b/rpc/srv/dsVideoPort.c @@ -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