Fix M125 XY parameters, export get_homing_bump_feedrate

This commit is contained in:
Scott Lahteine
2019-02-14 05:25:29 -06:00
parent ce40c2e87c
commit be9a409980
3 changed files with 5 additions and 4 deletions

View File

@ -61,8 +61,8 @@ void GcodeSuite::M125() {
point_t park_point = NOZZLE_PARK_POINT;
// Move XY axes to filament change position or given position
if (parser.seenval('X')) park_point.x = parser.linearval('X');
if (parser.seenval('Y')) park_point.y = parser.linearval('Y');
if (parser.seenval('X')) park_point.x = RAW_X_POSITION(parser.linearval('X'));
if (parser.seenval('Y')) park_point.y = RAW_X_POSITION(parser.linearval('Y'));
// Lift Z axis
if (parser.seenval('Z')) park_point.z = parser.linearval('Z');