public final enum

OcuSyncBandwidth

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.airlink.OcuSyncBandwidth

Class Overview

The channel bandwidth for the OcuSync downlink (from the aircraft to the remote controller). Setting a smaller bandwidth will reduce the data rate, but make the connection more robust. Only supported by Mavic Pro.

Summary

Enum Values
OcuSyncBandwidth  Bandwidth10MHz  The frequency band of the OcuSync link is 10 MHz (up to 23 Mbps). 
OcuSyncBandwidth  Bandwidth20MHz  The frequency band of the OcuSync link is 20 MHz (up to 46 Mbps). 
OcuSyncBandwidth  Unknown  Unknown frequency band. 
Public Methods
boolean _equals(int b)
Compares the specified integer value with the real value of an enum constant.
static OcuSyncBandwidth find(int value)
Returns the enum constant of the type for the specified integer value.
int value()
Returns the real value of an enum constant.
static OcuSyncBandwidth valueOf(String name)
final static OcuSyncBandwidth[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final OcuSyncBandwidth Bandwidth10MHz

The frequency band of the OcuSync link is 10 MHz (up to 23 Mbps).

public static final OcuSyncBandwidth Bandwidth20MHz

The frequency band of the OcuSync link is 20 MHz (up to 46 Mbps).

public static final OcuSyncBandwidth Unknown

Unknown frequency band.

Public Methods

public boolean _equals (int b)

Compares the specified integer value with the real value of an enum constant.

Parameters
b The integer value to be compared.
Returns
  • true if the values are equal, false otherwise.

public static OcuSyncBandwidth find (int value)

Returns the enum constant of the type for the specified integer value.

Parameters
value The integer value.
Returns
  • The enum constant of this type.

public int value ()

Returns the real value of an enum constant.

Returns
  • The real value of the enum.

public static OcuSyncBandwidth valueOf (String name)

public static final OcuSyncBandwidth[] values ()