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.
123456789101112131415 |
- #ifndef _STEPPERS_H_
- #define _STEPPERS_H_
-
- void steppers_init(void);
- bool steppers_run(void);
-
- bool steppers_homed(void);
- int steppers_start_homing(void);
-
- int steppers_move_x(long pos);
- int steppers_move_y(long pos);
- int steppers_move_z(long pos);
- int steppers_move_e(long pos);
-
- #endif // _STEPPERS_H_
|