Skip to content
  1. Apr 04, 2014
  2. Feb 25, 2014
  3. Jan 21, 2014
  4. Oct 30, 2013
  5. Oct 22, 2013
  6. Oct 08, 2013
  7. Sep 29, 2013
  8. Aug 30, 2013
  9. Jul 17, 2013
  10. Jul 14, 2013
  11. Jun 06, 2013
  12. Jun 02, 2013
  13. May 18, 2013
  14. Mar 01, 2013
    • Robert F-C's avatar
      Implement automatic extruder/cold-end fan control based on temperature · 372e12f8
      Robert F-C authored
      This change allows fan outputs to automatically turn on/off when the
      associated nozzle temperature of an extruder is above/below a threshold
      temperature.
      Multiple extruders can be assigned to the same pin in which case the fan
      will turn on when any selected extruder is above the threshold.
      It also makes the M42 command compatible with the M106/M107 command.
      The majority of the logic in this change will be evaluated by the
      compiler at build time (i.e, low code space requirements).
      372e12f8
  15. Dec 10, 2012
  16. Nov 07, 2012
  17. Oct 09, 2012
  18. Sep 13, 2012
  19. Aug 11, 2012
    • Ian Jackson's avatar
      M206: always use homing ("homeing") offsets · 957e966d
      Ian Jackson authored
      
      
      Previously the parameters set in M206 would only be used if a G82
      command was sent with specific axis home values.  This limits its
      usefulness.
      
      Really, we should have a way to adjust the XYZ homing of a machine in
      the eeprom.  So as the first stage of this, make M206 affect every
      home command.  The values set using M206 are now added to the
      configuration variables [XYZ]_HOME_POS.
      
      This is achieved by replacing all uses of [XYZ]_HOME_POS in the code
      by a new home_pos[] which includes the adjustment.  We also have to
      adjust the uses of [XYZ]_{MIN,MAX}_POS similarly - see below.
      
      
      To allow axis_is_at_home to be written as a function taking an axis
      index rather than a macro taking an axis letter, we provide
      constant arrays in program memory containing the values of
      [XYZ]_{MIN,MAX,HOME}_POS from the compiled-in configuration.
      
      This is done with some helper macros to deal with the declaration
      (XYZ_CONSTS_FROM_CONFIG) and definition of the inline function which
      does the program memory access.
      
      We also introduce the overloaded function read_pgm_any, whose
      instances are produced with DEFINE_PGM_READ_ANY, which allows the
      access functions to automatically produce the correct type.
      
      The type- and pointer-massaging code in the access function boils
      down, when compiled, to a simple program memory access.
      
      
      A question arises: if the M206 offset is set, should this adjustment
      to the home position shift or change the possible range of movement
      permitted by the software endstops ?
      
      The documentation in Configuration.h describes these limits as:
          // Travel limits after homing
      Since this is a file containing physical limits, and actual suggested
      values for these configuration parameters appear to include a certain
      amount of slop, I've taken the view that these should be regarded as
      nominal physical distances from the limit switches, and that the
      permissible travel should be unaffected by M206.
      
      So for example with the (rather unrealistic)
        #define X_HOME_DIR -1
        #define X_MIN_POS -20
        #define X_HOME_POS 0
        #define X_MAX_POS 100
      no matter the setting of M206 X, the machine would be permitted
      to move from 20mm "beyond" the limit switch trigger point in
      the negative X direction and 100mm away from the limit switch in
      the positive X direction, for a total travel of 120mm.
      
      With M206 X-10 that would be considered to correspond to X coordinates
      -30 to +90.  With M206 X+10 that would be considered to correspond to
      X coordinates -10 to +110.
      
      
      fixes #200 (in ErikZalm/Marlin).
      
      Signed-off-by: default avatarIan Jackson <ijackson@chiark.greenend.org.uk>
      957e966d
  20. Jul 14, 2012
  21. Jun 02, 2012
  22. May 04, 2012
  23. Apr 15, 2012
  24. Mar 18, 2012
  25. Feb 26, 2012
  26. Feb 20, 2012
  27. Feb 17, 2012
  28. Feb 08, 2012
  29. Nov 21, 2011
  30. Nov 20, 2011