do_blocking_move_to can't be 'inline', takes const ref args
This commit is contained in:
parent
a36a168af2
commit
cd496dd9bd
2 changed files with 8 additions and 8 deletions
|
|
@ -389,9 +389,9 @@ void calculate_volumetric_multipliers();
|
|||
/**
|
||||
* Blocking movement and shorthand functions
|
||||
*/
|
||||
inline void do_blocking_move_to(float x, float y, float z, float fr_mm_s=0.0);
|
||||
inline void do_blocking_move_to_x(float x, float fr_mm_s=0.0);
|
||||
inline void do_blocking_move_to_z(float z, float fr_mm_s=0.0);
|
||||
inline void do_blocking_move_to_xy(float x, float y, float fr_mm_s=0.0);
|
||||
void do_blocking_move_to(const float &x, const float &y, const float &z, const float &fr_mm_s=0.0);
|
||||
void do_blocking_move_to_x(const float &x, const float &fr_mm_s=0.0);
|
||||
void do_blocking_move_to_z(const float &z, const float &fr_mm_s=0.0);
|
||||
void do_blocking_move_to_xy(const float &x, const float &y, const float &fr_mm_s=0.0);
|
||||
|
||||
#endif //MARLIN_H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue