summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/hmi_interfaces_impl.cc
diff options
context:
space:
mode:
authordtrunov <dtrunov@luxoft.com>2016-09-15 14:14:11 +0300
committerdtrunov <dtrunov@luxoft.com>2016-09-29 11:36:10 +0300
commitff2bdeaf8a627fc698ff83f4987921b5773a3955 (patch)
tree7bb833bedf4af9bb8f8cdcaec7f686fbd147b7ca /src/components/application_manager/src/hmi_interfaces_impl.cc
parent85c71b25bde1eaca791e94ee3f16bb37d389efce (diff)
downloadsdl_core-ff2bdeaf8a627fc698ff83f4987921b5773a3955.tar.gz
UI interface: SDL behavior in case HMI does not respond to IsReady request or respond with "available" = false
Added logic for processing case when HMI does not respond to IsReady request or respond with "available"=false. Added logic to UI command in order to process UNSUPPORTED_RESOURCE result code. Change logic for processing response IsReady for UI, VR, TTS, VI interfaces. CRQ [APPLINK-25087](https://adc.luxoft.com/jira/browse/APPLINK-25087)
Diffstat (limited to 'src/components/application_manager/src/hmi_interfaces_impl.cc')
-rw-r--r--src/components/application_manager/src/hmi_interfaces_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/application_manager/src/hmi_interfaces_impl.cc b/src/components/application_manager/src/hmi_interfaces_impl.cc
index 08f5d3cc93..5665d0654a 100644
--- a/src/components/application_manager/src/hmi_interfaces_impl.cc
+++ b/src/components/application_manager/src/hmi_interfaces_impl.cc
@@ -120,7 +120,7 @@ generate_function_to_interface_convert_map() {
convert_map[VR_GetSupportedLanguages] = HmiInterfaces::HMI_INTERFACE_VR;
convert_map[VR_GetLanguage] = HmiInterfaces::HMI_INTERFACE_VR;
convert_map[VR_GetCapabilities] = HmiInterfaces::HMI_INTERFACE_VR;
- convert_map[TTS_GetCapabilities] = HmiInterfaces::HMI_INTERFACE_VR;
+ convert_map[TTS_GetCapabilities] = HmiInterfaces::HMI_INTERFACE_TTS;
convert_map[TTS_Started] = HmiInterfaces::HMI_INTERFACE_TTS;
convert_map[TTS_Stopped] = HmiInterfaces::HMI_INTERFACE_TTS;
convert_map[TTS_IsReady] = HmiInterfaces::HMI_INTERFACE_TTS;