请问下M600加X3相机显示不了图像画面的原因?
0
您好,我用M600飞机和X3相机连接一起开发,但是显示不了图像画面,请问下宽带链路部分的接口是要怎样设置的呢,我用M600连Z30是可以显示画面的。能告知我下吗?谢谢!我设置的对接接口链路如下:
Model.MATRICE_600 -> {
aircraft.airLink?.lightbridgeLink?.let { lb ->
if (cameraList.size >= 2 && cameraList[1].displayName != Camera.DisplayNameXT2_IR) {
lb.setBandwidthAllocationForLBVideoInputPort(0.8f) {
it?.let { error ->
KLog.e(
TAG,
"lb.setBandwidthAllocationForLBVideoInputPort----M600:${error.description}"
)
}
}
lb.setBandwidthAllocationForMainCamera(1.0f) {
it?.let { error ->
KLog.e(
TAG,
"lb.setBandwidthAllocationForMainCamera:--M600${error.description}"
)
}
}
lb.setBandwidthAllocationForLeftCamera(0.5f) {
it?.let { error ->
KLog.e(
TAG,
"lb.setBandwidthAllocationForLeftCamera:--M600${error.description}"
)
}
}
} else {
lb.setBandwidthAllocationForLBVideoInputPort(0.8f) {
it?.let { error ->
KLog.e(
TAG,
"lb.setBandwidthAllocationForLBVideoInputPort--M600:${error.description}"
)
}
}
}
}
}
|
|
|
|