Skip to content

Commit

Permalink
update version, change pid functional range back to 10 to match older…
Browse files Browse the repository at this point in the history
… versions of firmware, set linear advance k value to 0 and people can set it to what they want
  • Loading branch information
johncarlson21 committed Apr 5, 2023
1 parent 51867a4 commit 4e97f58
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@
#if ANY(PIDTEMP, PIDTEMPBED, PIDTEMPCHAMBER)
//#define PID_OPENLOOP // Puts PID in open loop. M104/M140 sets the output power from 0 to PID_MAX
//#define SLOW_PWM_HEATERS // PWM with very low frequency (roughly 0.125Hz=8s) and minimum state time of approximately 1s useful for heaters driven by a relay
#define PID_FUNCTIONAL_RANGE 3 // If the temperature difference between the target temperature and the actual temperature
#define PID_FUNCTIONAL_RANGE 10 // If the temperature difference between the target temperature and the actual temperature
// is more than PID_FUNCTIONAL_RANGE then the PID will be shut off and the heater will be set to min/max.

//#define PID_EDIT_MENU // Add PID editing to the "Advanced Settings" menu. (~700 bytes of flash)
Expand Down
2 changes: 1 addition & 1 deletion Marlin/Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -2123,7 +2123,7 @@
#define LIN_ADVANCE
#if ENABLED(LIN_ADVANCE)
#if ENABLED(DISTINCT_E_FACTORS)
#define ADVANCE_K { 0.15 } // (mm) Compression length per 1mm/s extruder speed, per extruder
#define ADVANCE_K { 0 } //{ 0.15 } // (mm) Compression length per 1mm/s extruder speed, per extruder
#else
#define ADVANCE_K 0.15 // (mm) Compression length applying to all extruders
#endif
Expand Down
4 changes: 2 additions & 2 deletions Marlin/src/inc/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Release version. Leave the Marlin version or apply a custom scheme.
*/
#ifndef SHORT_BUILD_VERSION
#define SHORT_BUILD_VERSION "2.1.3.1b2"
#define SHORT_BUILD_VERSION "2.1.3.1b3"
#endif

/**
Expand Down Expand Up @@ -66,7 +66,7 @@
* (Other behaviors are given by the firmware version and capabilities report.)
*/
#ifndef PROTOCOL_VERSION
#define PROTOCOL_VERSION "2.1.3.1b2"
#define PROTOCOL_VERSION "2.1.3.1b3"
#endif

/**
Expand Down

0 comments on commit 4e97f58

Please sign in to comment.