Skip to content
  1. Feb 14, 2014
  2. Jan 21, 2014
  3. Jan 20, 2014
    • ErikZalm's avatar
      Merge pull request #725 from whosawhatsis/Marlin_v1 · 9b2576e5
      ErikZalm authored
      Fix bugs in Extruder Runout Prevention, including DAMAGING HEAD CRASH
      9b2576e5
    • whosawhatsis's avatar
      Previous commit borked. · f08bb8bb
      whosawhatsis authored
      f08bb8bb
    • whosawhatsis's avatar
      Remove previous_millis_cmd update from extruder runout prevention code · b1f8f492
      whosawhatsis authored
      This seems to defeat the purpose of previous_millis_cmd, preventing the
      time elapsed from previous_millis_cmd from ever reaching
      max_inactive_time or stepper_inactive_time while the heat was on.
      b1f8f492
    • whosawhatsis's avatar
      Fix crash after home bug · 8a5eaa3c
      whosawhatsis authored
      Fixes a bug in the Extruder Runout Prevention feature that caused the
      extruder to move back to “current_position” after a move if it was
      activated while the move was in progress. For long home moves (which
      are longer than the dimensions of the machine’s working area), this
      would cause the machine to crash into the far end of its travel after
      homing. This usually occurred on the Z axis, which could result in
      damage to the machine if you don’t hit the reset button in time.
      8a5eaa3c
  4. Jan 17, 2014
  5. Jan 16, 2014
  6. Jan 06, 2014
  7. Dec 23, 2013
  8. Dec 19, 2013
  9. Dec 18, 2013
  10. Dec 17, 2013
  11. Dec 16, 2013
  12. Dec 13, 2013
  13. Dec 11, 2013
    • ErikZalm's avatar
      Merge pull request #677 from RicardoGA/patch-1 · 532289e8
      ErikZalm authored
      Z and Y dual stepper drivers error
      532289e8
    • RicardoGA's avatar
      Z and Y dual stepper drivers error · d29615dc
      RicardoGA authored
      if you try to enable Z_DUAL_STEPPER_DRIVERS the error "You cannot have dual drivers for both Y and Z" shows even if you don't have defined Y_DUAL_STEPPER_DRIVERS and don't let you compile the firmware
      
      to solve this problem i change this line:
      
      #ifdef Z_DUAL_STEPPER_DRIVERS && Y_DUAL_STEPPER_DRIVERS
      
      to:
      
      #if defined (Z_DUAL_STEPPER_DRIVERS) && defined (Y_DUAL_STEPPER_DRIVERS)
      
      now the error only show if you define both Z_DUAL_STEPPER_DRIVERS and Y_DUAL_STEPPER_DRIVERS
      d29615dc
    • fsantini's avatar
      Minor code and comment polishing · 5bde7fcb
      fsantini authored
      5bde7fcb
  14. Dec 08, 2013
  15. Dec 07, 2013
  16. Dec 06, 2013
  17. Nov 28, 2013
    • Alex Borro's avatar
      Bed Heater monitoring in Controller Fan · 5c44f6c4
      Alex Borro authored
      In some cases the Bed Heater FET heats up more then stepper drivers, so
      this change add the bed monitoring to the controller fan. As soon as the
      bed heater is turned on, the controller fan will run as well.
      5c44f6c4
    • Alex Borro's avatar
      Z Axis Safe Homing when using Z Probe · b33375d4
      Alex Borro authored
      Recommended for those who are using the Z Probe for Z Homing (as
      Z-Endstop)
      
      This feature has two changes:
      
      1) Allow user to choose where the Z Probe will touch the bed when homing
      all axis together (G28) by setting below defines:
      
      Z_SAFE_HOMING_X_POINT
      Z_SAFE_HOMING_Y_POINT
      
      2) Prevents the user to perform Z Axis Homing when the Z Probe is
      outsite bed.
      b33375d4
  18. Nov 27, 2013
    • Alex Borro's avatar
      Allow heaters to stay full On when PWM=127 · 35905ea4
      Alex Borro authored
      In previous version, even with PWM = 127, the system turns the FET off
      and then on in the next cycle. This bevavior may increase the FET heat
      dissipation.
      It was fixed keeping the FET always On when PWM=127.
      35905ea4
  19. Nov 18, 2013
  20. Nov 17, 2013