|
@@ -118,7 +118,8 @@
|
118
|
118
|
// PID settings:
|
119
|
119
|
// Comment the following line to disable PID and enable bang-bang.
|
120
|
120
|
#define PIDTEMP
|
121
|
|
-#define PID_MAX 256 // limits current to nozzle; 256=full current
|
|
121
|
+#define BANG_MAX 256 // limits current to nozzle while in bang-bang mode; 256=full current
|
|
122
|
+#define PID_MAX 256 // limits current to nozzle while PID is active (see PID_FUNCTIONAL_RANGE below); 256=full current
|
122
|
123
|
#ifdef PIDTEMP
|
123
|
124
|
//#define PID_DEBUG // Sends debug data to the serial port.
|
124
|
125
|
//#define PID_OPENLOOP 1 // Puts PID in open loop. M104/M140 sets the output power from 0 to PID_MAX
|