!1773 【bug fix】【USB和无线均开启应为与,否则会造成连续触发两次reset hdcd】

Merge pull request !1773 from bchen90/master
This commit is contained in:
openharmony_ci 2025-02-08 08:08:41 +00:00 committed by Gitee
commit d7f8aa8063
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 4 additions and 4 deletions

View File

@ -46,8 +46,8 @@
"setparam const.hdc.secure 1"
]
},{
"name" : "param:persist.hdc.mode.tcp=enable || param:persist.hdc.mode.usb=enable",
"condition" : "persist.hdc.mode.tcp=enable || persist.hdc.mode.usb=enable",
"name" : "param:persist.hdc.mode.tcp=enable && param:persist.hdc.mode.usb=enable",
"condition" : "persist.hdc.mode.tcp=enable && persist.hdc.mode.usb=enable",
"cmds" : [
"reset hdcd"
]

View File

@ -60,8 +60,8 @@
"setparam const.hdc.secure 0"
]
},{
"name" : "param:persist.hdc.mode.tcp=enable || param:persist.hdc.mode.usb=enable",
"condition" : "persist.hdc.mode.tcp=enable || persist.hdc.mode.usb=enable",
"name" : "param:persist.hdc.mode.tcp=enable && param:persist.hdc.mode.usb=enable",
"condition" : "persist.hdc.mode.tcp=enable && persist.hdc.mode.usb=enable",
"cmds" : [
"reset hdcd"
]