Seperate ENDSTOP_INVERTING for X Y and Z

Added simple endstop filter.
Corrected M114 count display.
This commit is contained in:
Erik van der Zalm
2011-11-25 13:43:06 +01:00
parent 0db97b9c7f
commit c0f8c9fd72
6 changed files with 62 additions and 18 deletions

View File

@ -31,6 +31,7 @@ void st_synchronize();
// Set current position in steps
void st_set_position(const long &x, const long &y, const long &z, const long &e);
void st_set_e_position(const long &e);
// Get current position in steps
long st_get_position(char axis);
@ -48,4 +49,4 @@ void endstops_hit_on_purpose(); //avoid creation of the message, i.e. after home
extern block_t *current_block; // A pointer to the block currently being traced
#endif
#endif