You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ian Jackson 957e966d2d M206: always use homing ("homeing") offsets
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: Ian Jackson <ijackson@chiark.greenend.org.uk>
13 years ago
..
Gen7 Fix cast warning in Gen7 13 years ago
Sanguino Fixed compiler warning for Sanguino compile 13 years ago
hardware/tools/avr/etc ATMega1284P support for Arduino IDE 13 years ago
COPYING first commit 14 years ago
Configuration.h Fixed soft limits when the origin is in the middle. 13 years ago
Configuration_adv.h Support step motor controllers with active low step pins. 13 years ago
EEPROMwrite.h __ header file replace 13 years ago
Makefile Makefile: Better display of size (device memory usage) 13 years ago
Marlin.h M206: always use homing ("homeing") offsets 13 years ago
Marlin.pde M206: always use homing ("homeing") offsets 13 years ago
MarlinSerial.cpp Teensylu support. 13 years ago
MarlinSerial.h Teensylu support. 13 years ago
Sd2Card.cpp made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
Sd2Card.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
Sd2PinMap.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
SdBaseFile.cpp Updated SERIAL define to MYSERIAL, because Arduino 1.0 defines SERIAL as 0. 13 years ago
SdBaseFile.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
SdFatConfig.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
SdFatStructs.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
SdFatUtil.cpp Updated SERIAL define to MYSERIAL, because Arduino 1.0 defines SERIAL as 0. 13 years ago
SdFatUtil.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
SdFile.cpp made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
SdFile.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
SdInfo.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
SdVolume.cpp made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
SdVolume.h made sd code only compile with SDSUPPORT defined. safes 10k of codespace 13 years ago
cardreader.cpp made prepare->autostart independent of current folder. 13 years ago
cardreader.h __ header file replace 13 years ago
createTemperatureLookup.py first commit 14 years ago
create_speed_lookuptable.py Added 20MHz support. 13 years ago
fastio.h Merge remote-tracking branch 'upstream/Marlin_v1' into Marlin_v1 13 years ago
language.h added firmware retract. disabled by default 13 years ago
motion_control.cpp software_endstops: use *_MIN_POS and *_MAX_POS for arcs 13 years ago
motion_control.h Removed interrupt nesting in the stepper ISR. 13 years ago
pins.h Fixed soft limits when the origin is in the middle. 13 years ago
planner.cpp Fixed AD595 define 13 years ago
planner.h Residual in the comments: there are no more mm/minutes but only mm/sec in the planner buffer. 13 years ago
speed_lookuptable.h Added 20MHz support. 13 years ago
stepper.cpp Fixed typo 13 years ago
stepper.h merging 13 years ago
temperature.cpp Limit PID autotune PWM to PID_MAX 13 years ago
temperature.h Added support for 2nd extruder temperature to UltraLCD 13 years ago
thermistortables.h Merge pull request #170 from linagee/Marlin_v1 13 years ago
ultralcd.h __ header file replace 13 years ago
ultralcd.pde Fixed AD595 define 13 years ago
watchdog.h __ header file replace 13 years ago
watchdog.pde simplified the includes, makefile now works with arduino23 13 years ago
wiring.h add wiring.h, that can be used to overwrite: 13 years ago