Skip to main content

self-Check Status for DragonFis

enum class AutoCheckStateEnum

Description: Flight Controller Self-Check Status for DragonFish Aircraft

enum class AutoCheckStateEnum(var value: Int) {

/**
* Normal status
*/
AUTO_CHECK_NORMAL(0),

/**
* Self-checking in progress
*/
AUTO_CHECK_GOING(1),

/**
* Self-check completed
*/
AUTO_CHECK_FINISH(2),

/**
* Unknown status
*/
UNKNOWN(-1);
}