ELEC50003-P1-CW/Control/include/status.h

13 lines
172 B
C
Raw Normal View History

2021-06-12 11:50:44 +00:00
#ifndef CONTROL_STATUS_H
#define CONTROL_STATUS_H
typedef enum {
CS_ERROR = -1,
CS_IDLE,
CS_MOVING,
CS_CHARGING,
CS_WAITING
2021-06-12 11:50:44 +00:00
} ControlStatus_t;
#endif