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