Skip to content

Commit

Permalink
Increasing MAXTEMP to 110 for 10A power supplies
Browse files Browse the repository at this point in the history
  • Loading branch information
mcheah committed Aug 2, 2018
1 parent fae3044 commit 241c46d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions MPMD_3dPrinter/Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,12 @@
//#define HEATER_1_MAXTEMP 275
//#define HEATER_2_MAXTEMP 275
//#define HEATER_3_MAXTEMP 275
#define HEATER_BED_5A_LIMIT
#if ENABLED(HEATER_BED_5A_LIMIT)
#define BED_MAXTEMP 90
#else
#define BED_MAXTEMP 110
#endif

//===========================================================================
//============================= PID Settings ================================
Expand Down Expand Up @@ -334,7 +339,6 @@
// setting this to anything other than 255 enables a form of PWM to the bed just like HEATER_BED_DUTY_CYCLE_DIVIDER did,
// so you shouldn't use it unless you are OK with PWM on your bed. (see the comment on enabling PIDTEMPBED)
#define MAX_BED_POWER 255 // limits duty cycle to bed; 255=full current
#define HEATER_BED_5A_LIMIT
#if ENABLED(PIDTEMPBED)

//#define PID_BED_DEBUG // Sends debug data to the serial port.
Expand Down Expand Up @@ -857,7 +861,7 @@
#define MOTOR_DEFAULT_STEPS_PER_UNIT (MOTOR_STEPS_PER_REVOLUTION * MOTOR_MICROSTEPS_COUNT / MOTOR_PULLEY_TEETH_COUNT / MOTOR_BELT_PITCH_MM)
#define MOTOR_EXTRUDER_RADIUS 5.5
#define MOTOR_DEFAULT_EXTRUDER_STEPS_PER_UNIT (MOTOR_STEPS_PER_REVOLUTION *MOTOR_MICROSTEPS_COUNT / (2*pi*MOTOR_EXTRUDER_RADIUS)
#define DEFAULT_AXIS_STEPS_PER_UNIT {MOTOR_DEFAULT_STEPS_PER_UNIT,MOTOR_DEFAULT_STEPS_PER_UNIT,MOTOR_DEFAULT_STEPS_PER_UNIT,48.50} // default steps per unit for Ultimaker
#define DEFAULT_AXIS_STEPS_PER_UNIT {MOTOR_DEFAULT_STEPS_PER_UNIT,MOTOR_DEFAULT_STEPS_PER_UNIT,MOTOR_DEFAULT_STEPS_PER_UNIT,48.50*(MOTOR_MICROSTEPS_COUNT/8.0)} // default steps per unit for Ultimaker
#define DEFAULT_MAX_FEEDRATE {150, 150, 150, 50} // (mm/sec)
#define DEFAULT_MAX_ACCELERATION {800,800,800,10000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for Skeinforge 40+, for older versions raise them a lot.

Expand Down
Binary file modified firmware binaries/firmware_10ALimit.bin
Binary file not shown.
Binary file modified firmware binaries/firmware_10ALimit_v43+.bin
Binary file not shown.

0 comments on commit 241c46d

Please sign in to comment.