No Description
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.

steppers.h 305B

123456789101112131415
  1. #ifndef _STEPPERS_H_
  2. #define _STEPPERS_H_
  3. void steppers_init(void);
  4. bool steppers_run(void);
  5. bool steppers_homed(void);
  6. void steppers_start_homing(void);
  7. int steppers_move_x(long pos);
  8. int steppers_move_y(long pos);
  9. int steppers_move_z(long pos);
  10. int steppers_move_e(long pos);
  11. #endif // _STEPPERS_H_