Skip to content

Commit

Permalink
Configuration changes to enable linear advance (LIN_ADVANCE).
Browse files Browse the repository at this point in the history
  • Loading branch information
aegean-odyssey committed May 18, 2020
1 parent 42f3fcf commit cf59972
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion marlin_changes/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@
// Make delta curves from many straight lines (linear interpolation).
// This is a trade-off between visible corners (not enough segments)
// and processor overload (too many expensive sqrt calls).
#define DELTA_SEGMENTS_PER_SECOND 500
#define DELTA_SEGMENTS_PER_SECOND 200

// Convert feedrates to apply to the Effector instead of the Carriages
//#define DELTA_FEEDRATE_SCALING
Expand Down
5 changes: 3 additions & 2 deletions marlin_changes/Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -973,10 +973,11 @@
* instructions. Mention @Sebastianv650 on GitHub to alert the author
* of any issues.
*/
//#define LIN_ADVANCE
#define LIN_ADVANCE
#if ENABLED(LIN_ADVANCE)
// Unit: mm compression per 1mm/s extruder speed
#define LIN_ADVANCE_K 0.22
//#define LIN_ADVANCE_K 0.22
#define LIN_ADVANCE_K 0.0
// If enabled, this will generate debug information output over USB.
//#define LA_DEBUG
#endif
Expand Down

0 comments on commit cf59972

Please sign in to comment.