医美代码重构
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
391 B

  1. #include "motor_drive.h"
  2. void motor_init(motor_t* motor) { return; }
  3. void motor_set_zero_point() { return; }
  4. /**
  5. * @brief 0->360
  6. *
  7. * @return uint32_t
  8. */
  9. uint32_t motor_get_position_degree() { return 0; }
  10. /**
  11. * @brief
  12. */
  13. void motor_run_to_postion(int potion) { return; }
  14. void motor_reg_event_cb(motor_on_event_t onevent) { return; }