123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- #ifndef stepper_h
- #define stepper_h
- #include "planner.h"
- #define ENABLE_STEPPER_DRIVER_INTERRUPT() TIMSK1 |= (1<<OCIE1A)
- #define DISABLE_STEPPER_DRIVER_INTERRUPT() TIMSK1 &= ~(1<<OCIE1A)
- #ifdef ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
- extern bool abort_on_endstop_hit;
- #endif
- void st_init();
- void isr();
- void st_synchronize();
- void st_set_position(const long &x, const long &y, const long &z, const long &e);
- void st_set_e_position(const long &e);
- long st_get_position(uint8_t axis);
- void st_get_position_xy(long &x, long &y);
- float st_get_position_mm(uint8_t axis);
- void st_reset_timer();
- void checkHitEndstops();
- bool endstops_hit_on_purpose();
- bool endstop_z_hit_on_purpose();
- bool enable_endstops(bool check);
- bool enable_z_endstop(bool check);
- void invert_z_endstop(bool endstop_invert);
- void checkStepperErrors();
- extern block_t *current_block;
- extern bool x_min_endstop;
- extern bool x_max_endstop;
- extern bool y_min_endstop;
- extern bool y_max_endstop;
- extern volatile long count_position[NUM_AXIS];
- void quickStop();
- #if defined(DIGIPOTSS_PIN) && DIGIPOTSS_PIN > -1
- void digitalPotWrite(int address, int value);
- #endif //defined(DIGIPOTSS_PIN) && DIGIPOTSS_PIN > -1
- void microstep_ms(uint8_t driver, int8_t ms1, int8_t ms2);
- void microstep_mode(uint8_t driver, uint8_t stepping);
- void st_current_init();
- void st_current_set(uint8_t driver, int current);
- void microstep_init();
- void microstep_readings();
- #ifdef BABYSTEPPING
- void babystep(const uint8_t axis,const bool direction);
- #endif
- #if defined(FILAMENT_SENSOR) && defined(PAT9125)
- void st_reset_fsensor();
- #endif
- #endif
|