Airbot SDK 5.1.6
This project is designed for airbot C++SDK
Loading...
Searching...
No Matches
driver_state.hpp
Go to the documentation of this file.
1#ifndef DRIVER_STATE_HPP_
2#define DRIVER_STATE_HPP_
3
4#include <cstdint>
5
18namespace airbot {
19
27enum class State : int {
33 INIT = 0,
34
40 SHUTDOWN = 1,
41
47 POWERON = 2,
48
55 IDLE = 3,
56
62 APPLOADING = 4,
63
72 APPLOADED = 5,
73
79 ERROR = 6,
80};
81
82} // namespace airbot
83
84#endif // DRIVER_STATE_HPP_
Namespace containing all Airbot SDK related definitions.
State
Enum representing the operational states of the driver service.
Definition driver_state.hpp:27
@ APPLOADING
Application loading state.
@ POWERON
Power-on state.
@ IDLE
Idle state.
@ APPLOADED
Application loaded state.
@ SHUTDOWN
Shutdown state.
@ ERROR
Error state.
@ INIT
Initialization state.