Skip to content

Commit

Permalink
Change XY_PROBE_SPEED to XY_PROBE_FEEDRATE in versions that are not 2…
Browse files Browse the repository at this point in the history
….0.7.2.
  • Loading branch information
jeffeb3 committed Mar 1, 2021
1 parent 3441d20 commit 73ce85a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/configs/common/3dp-config
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ opt_set DEFAULT_MAX_FEEDRATE "{ 150, 150, 15, 24 }"
opt_set DEFAULT_MAX_ACCELERATION "{ 2000, 2000, 100, 3000 }"
opt_set DEFAULT_ACCELERATION "2000"
opt_set DEFAULT_TRAVEL_ACCELERATION "2000"
opt_set XY_PROBE_SPEED "6000"
if [ "$MARLIN_VERSION" = "2.0.7.2" ]
then
opt_set XY_PROBE_SPEED "6000"
else
opt_set XY_PROBE_FEEDRATE "6000"
fi
opt_set HOMING_FEEDRATE_MM_M "{ (40*60), (40*60), (3*60) }"
opt_set PREHEAT_1_TEMP_HOTEND "196"
opt_set PREHEAT_1_TEMP_BED "62"
Expand Down

0 comments on commit 73ce85a

Please sign in to comment.