|
@@ -200,33 +200,23 @@ inline void prepare_internal_move_to_destination(const feedRate_t &fr_mm_s=0.0f)
|
200
|
200
|
* Blocking movement and shorthand functions
|
201
|
201
|
*/
|
202
|
202
|
void do_blocking_move_to(const float rx, const float ry, const float rz, const feedRate_t &fr_mm_s=0.0f);
|
203
|
|
-
|
204
|
|
-FORCE_INLINE void do_blocking_move_to(const xy_pos_t &raw, const feedRate_t &fr_mm_s=0.0f) {
|
205
|
|
- do_blocking_move_to(raw.x, raw.y, current_position.z, fr_mm_s);
|
206
|
|
-}
|
207
|
|
-FORCE_INLINE void do_blocking_move_to(const xyz_pos_t &raw, const feedRate_t &fr_mm_s=0.0f) {
|
208
|
|
- do_blocking_move_to(raw.x, raw.y, raw.z, fr_mm_s);
|
209
|
|
-}
|
210
|
|
-FORCE_INLINE void do_blocking_move_to(const xyze_pos_t &raw, const feedRate_t &fr_mm_s=0.0f) {
|
211
|
|
- do_blocking_move_to(raw.x, raw.y, raw.z, fr_mm_s);
|
212
|
|
-}
|
213
|
|
-
|
214
|
|
-void do_blocking_move_to_xy(const float &rx, const float &ry, const feedRate_t &fr_mm_s=0.0f);
|
215
|
|
-
|
216
|
|
-FORCE_INLINE void do_blocking_move_to_xy(const xy_pos_t &raw, const feedRate_t &fr_mm_s=0.0f) {
|
217
|
|
- do_blocking_move_to_xy(raw.x, raw.y, fr_mm_s);
|
218
|
|
-}
|
219
|
|
-FORCE_INLINE void do_blocking_move_to_xy(const xyz_pos_t &raw, const feedRate_t &fr_mm_s=0.0f) {
|
220
|
|
- do_blocking_move_to_xy(raw.x, raw.y, fr_mm_s);
|
221
|
|
-}
|
222
|
|
-FORCE_INLINE void do_blocking_move_to_xy(const xyze_pos_t &raw, const feedRate_t &fr_mm_s=0.0f) {
|
223
|
|
- do_blocking_move_to_xy(raw.x, raw.y, fr_mm_s);
|
224
|
|
-}
|
|
203
|
+void do_blocking_move_to(const xy_pos_t &raw, const feedRate_t &fr_mm_s=0.0f);
|
|
204
|
+void do_blocking_move_to(const xyz_pos_t &raw, const feedRate_t &fr_mm_s=0.0f);
|
|
205
|
+void do_blocking_move_to(const xyze_pos_t &raw, const feedRate_t &fr_mm_s=0.0f);
|
225
|
206
|
|
226
|
207
|
void do_blocking_move_to_x(const float &rx, const feedRate_t &fr_mm_s=0.0f);
|
227
|
208
|
void do_blocking_move_to_y(const float &ry, const feedRate_t &fr_mm_s=0.0f);
|
228
|
209
|
void do_blocking_move_to_z(const float &rz, const feedRate_t &fr_mm_s=0.0f);
|
229
|
210
|
|
|
211
|
+void do_blocking_move_to_xy(const float &rx, const float &ry, const feedRate_t &fr_mm_s=0.0f);
|
|
212
|
+void do_blocking_move_to_xy(const xy_pos_t &raw, const feedRate_t &fr_mm_s=0.0f);
|
|
213
|
+FORCE_INLINE void do_blocking_move_to_xy(const xyz_pos_t &raw, const feedRate_t &fr_mm_s=0.0f) { do_blocking_move_to_xy(xy_pos_t(raw), fr_mm_s); }
|
|
214
|
+FORCE_INLINE void do_blocking_move_to_xy(const xyze_pos_t &raw, const feedRate_t &fr_mm_s=0.0f) { do_blocking_move_to_xy(xy_pos_t(raw), fr_mm_s); }
|
|
215
|
+
|
|
216
|
+void do_blocking_move_to_xy_z(const xy_pos_t &raw, const float &z, const feedRate_t &fr_mm_s=0.0f);
|
|
217
|
+FORCE_INLINE void do_blocking_move_to_xy_z(const xyz_pos_t &raw, const float &z, const feedRate_t &fr_mm_s=0.0f) { do_blocking_move_to_xy_z(xy_pos_t(raw), z, fr_mm_s); }
|
|
218
|
+FORCE_INLINE void do_blocking_move_to_xy_z(const xyze_pos_t &raw, const float &z, const feedRate_t &fr_mm_s=0.0f) { do_blocking_move_to_xy_z(xy_pos_t(raw), z, fr_mm_s); }
|
|
219
|
+
|
230
|
220
|
void remember_feedrate_and_scaling();
|
231
|
221
|
void remember_feedrate_scaling_off();
|
232
|
222
|
void restore_feedrate_and_scaling();
|