Skip to content

Commit

Permalink
Change default values for max acceleration and jerk (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrivet committed Jan 13, 2018
1 parent d210f91 commit edc23ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@
* Override with M201
* X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
*/
#define DEFAULT_MAX_ACCELERATION { 3000, 3000, 100, 3000 }
#define DEFAULT_MAX_ACCELERATION { 1000, 1000, 100, 1000 }

/**
* Default Acceleration (change/s) change = mm/s
Expand All @@ -573,8 +573,8 @@
* When changing speed and direction, if the difference is less than the
* value set here, it may happen instantaneously.
*/
#define DEFAULT_XJERK 10.0
#define DEFAULT_YJERK 10.0
#define DEFAULT_XJERK 8.0
#define DEFAULT_YJERK 8.0
#define DEFAULT_ZJERK 0.4
#define DEFAULT_EJERK 1.0

Expand Down

0 comments on commit edc23ab

Please sign in to comment.