add new function prototypes to gcode_process.h
This commit is contained in:
parent
a0d20958c3
commit
29391e64e7
|
|
@ -3,9 +3,13 @@
|
||||||
|
|
||||||
#include "gcode_parse.h"
|
#include "gcode_parse.h"
|
||||||
|
|
||||||
|
|
||||||
|
void zero_x(void);
|
||||||
|
void zero_y(void);
|
||||||
|
void zero_z(void);
|
||||||
|
void zero_e(void);
|
||||||
|
|
||||||
// this is where we construct a move without a gcode command, useful for gcodes which require multiple moves eg; homing
|
// this is where we construct a move without a gcode command, useful for gcodes which require multiple moves eg; homing
|
||||||
void SpecialMoveXY(int32_t x, int32_t y, uint32_t f);
|
|
||||||
void SpecialMoveZ(int32_t z, uint32_t f);
|
|
||||||
void SpecialMoveE(int32_t e, uint32_t f);
|
void SpecialMoveE(int32_t e, uint32_t f);
|
||||||
|
|
||||||
// when we have a whole line, feed it to this
|
// when we have a whole line, feed it to this
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue