Skip to content
  1. Jan 06, 2014
  2. Dec 23, 2013
  3. Dec 19, 2013
  4. Dec 18, 2013
  5. Dec 17, 2013
  6. Dec 16, 2013
  7. Dec 13, 2013
  8. 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
  9. Dec 08, 2013
  10. Dec 07, 2013
  11. Dec 06, 2013
  12. 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
  13. 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
  14. Nov 18, 2013
  15. Nov 17, 2013
  16. Nov 10, 2013
  17. Nov 09, 2013
  18. Nov 04, 2013
  19. Nov 03, 2013
  20. Nov 01, 2013