AdsState

public enum AdsState
{
    Invalid = 0,
    Idle = 1,
    Reset = 2,
    Init = 3,
    Start = 4,
    Run = 5,
    Stop = 6,
    SaveConfig = 7,
    LoadConfig = 8,
    PowerFailure = 9,
    PowerGood = 10,
    Error = 11,
    Shutdown = 12,
    Suspend = 13,
    Resume = 14,
    Config = 15,
    Reconfig = 16,
    Maxstates = 17,
}

Members

Member Name

Description

Invalid

invalided state

Idle

idle state

Reset

reset state

Init

initialized

Start

started

Run

running

Stop

stopped

SaveConfig

saved configuration

LoadConfig

load configuration

PowerFailure

power failure

PowerGood

power good

Error

error state

Shutdown

shutting down

Suspend

suspended

Resume

resumed

Config

system is in config mode

Reconfig

system should restart in config mode

Maxstates