我正在使用Mobile SDK开发M210特殊应用程序。 当我尝试使用以下代码分配飞机带宽时:
DJIAirLink * airlink= [DemoComponentHelper fetchAirLink];
[airlink.lightbridgeLink setBandwidthAllocationForMainCamera:1.0 withCompletion:^(NSError * _Nullable error) {
if(error){
NSLog(@"%@",error);}];
[ airlink.lightbridgeLink setBandwidthAllocationForLeftCamera:0.7 withCompletion:^(NSError * _Nullable error) {
if(error){
NSLog(@"%@",error);
}];
我得到一个错误:当前产品不支持此功能。(代码:-1013)
有人可以解释这个错误吗?谢谢