GimbalCalState
enum class GimbalCalState
Description: gimbal calibration state
enum class GimbalCalState(val value: Int) {
/**
* initial state
*/
ORIGIN(0),
/**
* The direction fluctuates, but the valid position is not reached
*/
INVALID(1),
/**
* This direction is calibrated (pull the joystick)
*/
NORMAL(2),
UNKNOWN(3);
}