Browse Source

Fixed #345, Fixed #267.

daid303 11 years ago
parent
commit
8b88e3b386
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Marlin/Configuration.h

+ 3
- 3
Marlin/Configuration.h View File

@@ -113,7 +113,7 @@
113 113
 // PID settings:
114 114
 // Comment the following line to disable PID and enable bang-bang.
115 115
 #define PIDTEMP
116
-#define PID_MAX 255 // limits current to nozzle; 255=full current
116
+#define PID_MAX 256 // limits current to nozzle; 256=full current
117 117
 #ifdef PIDTEMP
118 118
   //#define PID_DEBUG // Sends debug data to the serial port. 
119 119
   //#define PID_OPENLOOP 1 // Puts PID in open loop. M104/M140 sets the output power from 0 to PID_MAX
@@ -156,9 +156,9 @@
156 156
 
157 157
 // This sets the max power delived to the bed, and replaces the HEATER_BED_DUTY_CYCLE_DIVIDER option.
158 158
 // all forms of bed control obey this (PID, bang-bang, bang-bang with hysteresis)
159
-// setting this to anything other than 255 enables a form of PWM to the bed just like HEATER_BED_DUTY_CYCLE_DIVIDER did,
159
+// setting this to anything other than 256 enables a form of PWM to the bed just like HEATER_BED_DUTY_CYCLE_DIVIDER did,
160 160
 // so you shouldn't use it unless you are OK with PWM on your bed.  (see the comment on enabling PIDTEMPBED)
161
-#define MAX_BED_POWER 255 // limits duty cycle to bed; 255=full current
161
+#define MAX_BED_POWER 256 // limits duty cycle to bed; 256=full current
162 162
 
163 163
 #ifdef PIDTEMPBED
164 164
 //120v 250W silicone heater into 4mm borosilicate (MendelMax 1.5+)

Loading…
Cancel
Save