[6.2.0]删除接管View冗余日志

This commit is contained in:
xuxinchao
2023-11-23 16:58:48 +08:00
parent 185e868b37
commit 1af136972a

View File

@@ -56,13 +56,10 @@ class TakeOverView @JvmOverloads constructor(
}
override fun onAutopilotStatusResponse(state: Int) {
CallerLogger.i(M_HMI + TAG, "onAutopilotStatusResponse state=$state")
if(state == 7){
isParallel = true
CallerLogger.i(M_HMI + TAG, "onAutopilotStatusResponse isParallel status=true")
}else if(state == 0 || state == 1){
isParallel = false
CallerLogger.i(M_HMI + TAG, "onAutopilotStatusResponse isParallel status=false")
}
}