TrackWorkStateEnum
enum class TrackWorkStateEnum
Description: Track job status
enum class TrackWorkStateEnum(var value: Int) {
/**
* exit follow
*/
EXIT_FOLLOW(0),
/**
* detection status
*/
CHECK_STATUS(1),
/**
* Target following state (gimbal moving, aircraft not moving)
*/
TARGET_FOLLOW_STATUS(2),
/**
* Planning to follow the state (gimbal movement, aircraft movement)
*/
PLAN_FOLLOW_STATUS(3);
}