[6.1.0]调试面板增加自车光圈开关

This commit is contained in:
xuxinchao
2023-09-22 19:21:03 +08:00
parent ea51f63879
commit a5e09f5596
5 changed files with 69 additions and 3 deletions

View File

@@ -38,4 +38,14 @@ object CallerSopSettingManager: CallerBase<ISopSettingListener>() {
}
}
/**
* 触发自车光圈事件监听
*/
fun invokeCarApertureListener(status: Boolean){
M_LISTENERS.forEach {
val listener = it.value
listener.onCarApertureClickEvent(status)
}
}
}