mirror of
https://github.com/supleed2/ELEC50003-P1-CW.git
synced 2024-11-10 01:35:50 +00:00
13 lines
172 B
C
13 lines
172 B
C
#ifndef CONTROL_STATUS_H
|
|
#define CONTROL_STATUS_H
|
|
|
|
typedef enum {
|
|
CS_ERROR = -1,
|
|
CS_IDLE,
|
|
CS_MOVING,
|
|
CS_CHARGING,
|
|
CS_WAITING
|
|
} ControlStatus_t;
|
|
|
|
#endif
|