Image transmission management
class AutelDsp
method getRFDataList
void getRFDataList
(int maxRetryCount, CallbackWithOneParam<List<RFData>> callback);
*Description: ** Obtains all RF data.
Input parameter: maxRetryCount: Maximum number of retries
Output parameter: Callback of obtaining all RF data
Related parameter: RFData
method getCurrentRFData
void getCurrentRFData
(int maxRetryCount, CallbackWithOneParam<RFData> callback);
*Description: ** Obtains the current RF data.
Input parameter: maxRetryCount: Maximum number of retries
Output parameter: Callback of obtaining the current RF data
Related parameter: RFData
method setCurrentRFData
void setCurrentRFData
(int newRouteHz, int maxRetryCount, CallbackWithNoParam callback);
*Description: ** Sets the current RF data.
Input parameter: newRouteHz: New parameter to be set maxRetryCount: Maximum number of retries
Output parameter: Callback of setting the current RF data
Related parameter: None
method getVersionInfo
void getVersionInfo(CallbackWithOnePara=m<DspVersionInfo> callback);
Description: Obtains the version information of image transmission.
Input parameter: None
Output parameter: Callback of obtaining the version information of image transmission
Related parameter: None
sidebar_position: 1
title:
slug: /10/1
class EvoDsp
method setDspInfoListener
void setDspInfoListener(CallbackWithOneParam<EvoDspInfo> listener);
Description: Listens for image transmission information
Input parameter: None
Output parameter: Callback of image information listening
Related parameter: EvoDspInfo
method setBandwidthInfo
void setBandwidthInfo(BandMode bandMode, Bandwidth bandWidth);
Description: Sets the value of band mode and bandwidth.
Input parameters: bandMode: Enumeration value of the band mode; bandWidth: bandwidth: Enumeration value of the broadband mode
Output parameter: Callback of the warning information
Related parameters: BandMode, Bandwidth
method setTransferMode
void setTransferMode
(TransferMode transferMode, CallbackWithNoParam callbackWithNoParam);
Description: Sets the image transmission mode.
Input parameter: Enumeration value of image transmission mode (transferMode)
Output parameter: Callback of setting the image transmission mode
Related parameter: TransferMode
method getTransferMode
void getTransferMode(CallbackWithOneParam<TransferMode> callback);
Description: getTransferMode
Input parameter: None
Output parameter: Callback of obtaining the image transmission mode
Related parameter: TransferMode
method setVideoLinkState
void setVideoLinkState(boolean open, CallbackWithNoParam callback);
Description: Sets the video link state.
Input parameter: open: Whether to enable video link
Output parameter: Callback of setting the video link state
Related parameter: None
method getDeviceVersionInfo
void getDeviceVersionInfo
(CallbackWithOneParam<List<DeviceVersionInfo>> callback);
Description: Obtains the version information.
Input parameter: None
Output parameter: Callback of returning the version information
Related parameter: None
sidebar_position: 1
title:
slug: /10/1
class BandMode
method getValue()
String getValue()
Description: Obtains the string corresponding to the enumeration.
Input parameter: None
Output parameter: Returns the band name corresponding to the enumeration
Related parameter: BandMode
method find
BandMode find(String value)
Description: Finds the enumeration type corresponding to the string.
Input parameter: None
Output parameter: Returns the enumeration type corresponding to the string.
Related parameter: None
/**
* The band mode is 1.4G.
* The band mode is 1.4G.
*/
MODE_1_4G("1.4G"),
/**
*
* The band mode is 2.4G.
*/
MODE_2_4G("2.4G"),
/**
*
* The band mode is 900M.
*/
MODE_900M("900M"),
/**
*
* The band mode is a combination of 2.4G and 900M.
*/
MODE_2_4G_900M("2.4G_900M"),
/**
* Supported by V2 aircraft only - Supported in Japan
*/
MODE_5_7G("5.7G"),
/**
* Supported by V2 aircraft only
*/
MODE_5_8G("5.8G"),
/**
* Supported by V2 aircraft only
*/
MODE_2_4G_5_8G("2.4G_5.8G"),
/**
* The band mode is unknown.
* The band mode is unknown.
*/
UNKNOWN("UNKNOWN");
sidebar_position: 1
title:
slug: /10/1
class Bandwidth
method getValue
String getValue()
Description: Obtains the character name corresponding to the current broadband.
Input parameter: None
Output parameter: Returns the character name corresponding to the current broadband
Related parameter Bandwidth enumeration
/**
* The bandwidth is 3M.
* The bandwidth is 3M.
*/
TransferMode: Transmit mode of the DSP
3.3 Example: Sets the image transmission mode to smooth
WIDTH_3M("3M"),
/**
* The bandwidth is 5M.
* The bandwidth is 5M.
*/
WIDTH_5M("5M"),
/**
* The bandwidth is 10M.
* The bandwidth is 10M.
*/
WIDTH_10M("10M"),
/**
* The bandwidth is 20M.
* The bandwidth is 20M.
*/
WIDTH_20M("20M"),
/**
* The bandwidth is unknown.
* The bandwidth is unknown.
*/
UNKNOWN("UNKNOWN");
method find
Bandwidth find(String value)
Description: Finds the broadband enumeration based on the broadband name.
Input parameter: None
Output parameter: Returning the result of finding the broadband enumeration based on the broadband name
Related parameter: None
sidebar_position: 1
title:
slug: /10/1
class TransferMode
method getValue
int getValue()
Description: Obtains the image transmission mode ID.
Input parameter: None
Output parameter: Returns the image transmission mode ID.
Related parameter: TransferMode
/**
*
* The transmit mode is Fluent.
*/
FLUENCY(0),
/**
*
* The transmit mode is Normal.
*/
NORMAL(1),
/**
*
* The transmit mode is High Definition.
*/
HIGH_DEFINITION(2),
/**
*
* The transmit mode is Ultra High Definition.
*/
SUPPER_DEFINITION(3),
/**
*
* The transmit mode is Fluent.
*/
FLUENT_60FPS(4),
/**
*
* The transmit mode is High Definition.
*/
HIGH_DEFINITION_60FPS(5),
/**
*
* The transmit mode is Ultra High Definition.
*/
SUPPER_DEFINITION_60FPS(6),
/**
*
* The transmit mode is unknown.
*/
UNKNOWN(-1);
method find
TransferMode find(int value)
Description: Finds the image transmission mode enumeration based on the ID.
Input parameter: None
Output parameter: Returns the result of finding the image transmission mode enumeration.
Related parameter: None