From 05d3f0113b1896701735b3d956e6056a5528d3d8 Mon Sep 17 00:00:00 2001 From: Sungpil Shin <57691044+spshin3@users.noreply.github.com> Date: Thu, 9 Nov 2023 14:15:51 +0900 Subject: [PATCH 1/3] Update screen mirroring in Infotainment.vspec Add screen mirroring in infortainment. Mirror phone screen to car screen. --- spec/Cabin/Infotainment.vspec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/spec/Cabin/Infotainment.vspec b/spec/Cabin/Infotainment.vspec index 4dcbb3006..bb64b936a 100644 --- a/spec/Cabin/Infotainment.vspec +++ b/spec/Cabin/Infotainment.vspec @@ -266,4 +266,27 @@ SmartphoneProjection.SupportedMode: allowed: [ 'ANDROID_AUTO', 'APPLE_CARPLAY', 'MIRROR_LINK', 'OTHER' ] description: Supportable list for projection. +SmartphoneScreenMirroring: + type: branch + description: All smartphone mirroring actions. + +SmartphoneScreenMirroring.Active: + datatype: string + type: actuator + allowed: [ 'NONE', 'ACTIVE', 'INACTIVE' ] + description: Mirroring activation info. + comment: NONE indicates that mirroring is not supported. + +SmartphoneScreenMirroring.Source: + datatype: string + type: actuator + allowed: ['USB', 'BLUETOOTH', 'WIFI'] + description: Connectivity source selected for mirroring. + +SmartphoneScreenMirroring.Resolution: + datatype: string + type: attribute + allowed: [ '720p', '1080p', '4K' ] +description: Display resolution for the mirrored content. + #include include/PowerOptimize.vspec From dc8b5066c7037823219796250303e51371749e0b Mon Sep 17 00:00:00 2001 From: Sungpil Shin <57691044+spshin3@users.noreply.github.com> Date: Tue, 12 Dec 2023 11:27:18 +0900 Subject: [PATCH 2/3] Update Infotainment.vspec Resolving comment from erik --- spec/Cabin/Infotainment.vspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/Cabin/Infotainment.vspec b/spec/Cabin/Infotainment.vspec index bb64b936a..faf2eef1b 100644 --- a/spec/Cabin/Infotainment.vspec +++ b/spec/Cabin/Infotainment.vspec @@ -286,7 +286,7 @@ SmartphoneScreenMirroring.Source: SmartphoneScreenMirroring.Resolution: datatype: string type: attribute - allowed: [ '720p', '1080p', '4K' ] -description: Display resolution for the mirrored content. + allowed: ['RES_720P', 'RES_1080P', 'RES_4K'] + description: Display resolution for the mirrored content. #include include/PowerOptimize.vspec From 40c2dc2b88f7a0212ee05d498c7c73af52ffdbee Mon Sep 17 00:00:00 2001 From: Sungpil Shin Date: Wed, 13 Dec 2023 14:00:59 +0900 Subject: [PATCH 3/3] fix typo Signed-off-by: Sungpil Shin --- spec/Cabin/Infotainment.vspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/Cabin/Infotainment.vspec b/spec/Cabin/Infotainment.vspec index 5b65f10e7..98ecd2452 100644 --- a/spec/Cabin/Infotainment.vspec +++ b/spec/Cabin/Infotainment.vspec @@ -274,7 +274,7 @@ SmartphoneScreenMirroring: SmartphoneScreenMirroring.Active: datatype: string type: actuator - allowed: [ 'NONE', 'ACTIVE', 'INACTIVE' ] + allowed: [ 'NONE', 'ACTIVE', 'INACTIVE' ] description: Mirroring activation info. comment: NONE indicates that mirroring is not supported.