[2.13.2] 优化v2v的显示问题,其他问题优化

This commit is contained in:
lixiaopeng
2023-01-13 20:29:40 +08:00
parent c66faffe5e
commit 0106e7a34e
8 changed files with 92 additions and 58 deletions

View File

@@ -188,7 +188,6 @@ object CallerHmiManager : CallerBase() {
* @param lightSource 1:云端下发2:自车感知3:OBU
*/
fun showWarningTrafficLight(checkLightId: Int, lightSource: Int) {
Log.e("liyz", "showWarningTrafficLight checkLightId = $checkLightId ---lightSource = $lightSource")
waringProviderApi?.showWarningTrafficLight(checkLightId, lightSource)
}
@@ -196,7 +195,6 @@ object CallerHmiManager : CallerBase() {
* 关闭红绿灯预警
*/
fun disableWarningTrafficLight() {
Log.e("liyz", "disableWarningTrafficLight --------------------> ")
waringProviderApi?.disableWarningTrafficLight()
}
@@ -252,7 +250,6 @@ object CallerHmiManager : CallerBase() {
*/
@BizConfig(V2I, "", BIZ_SLW)
fun showLimitingVelocity(limitingSpeed: Int, limitSpeedSource: Int) {
Log.e("liyz", "showLimitingVelocity limitingSpeed = $limitingSpeed ---limitSpeedSource = $limitSpeedSource")
waringProviderApi?.showLimitingVelocity(limitingSpeed, limitSpeedSource)
}

View File

@@ -25,7 +25,6 @@ object CallerMsgBoxManager {
* 存储数据到消息盒子
*/
fun saveMsgBox(bean: MsgBoxBean) {
Log.d("liyz", "saveMsgBox json = ${bean.bean2Json} --sourceType = ${bean.sourceType} ")
providerApi?.saveMsg(bean)
}