motor.h 228 B

1234567891011
  1. #ifndef _MOTOR_H__
  2. #define _MOTOR_H__
  3. #include "os/os_types.h"
  4. #include "foc/core/foc_type.h"
  5. bool mc_start(u8 mode);
  6. bool mc_stop(void);
  7. bool mc_throttle_released(void);
  8. bool mc_lock_motor(bool lock);
  9. #endif /* _MOTOR_H__ */