This documentation is no longer maintained. For documentation of the current version of emc2, please see http://www.linuxcnc.org/docview/html

Table of Contents

List of figures

List of tables

0.1 Homing

0.1.1 Overview

Homing seems simple enough - just move each joint to a known location, and set EMC's internal variables accordingly. However, different machines have different requirements, and homing can be quite complicated. When specifying the direction of travel for the axis by using a positive or negative number for SEARCH_VEL and LATCH_VEL the machine will move in the same direction as when you do a + or - jog in manual control. For example if you press the + key to move toward your home switch and you have a typical configuration then both SEARCH_VEL and LATCH_VEL will be positive numbers for that axis.

0.1.2 Homing Sequence

In figure [.] you can see the sequence of a typical homing scenario when both SEARCH_VEL and LATCH_VEL are the same sign (positive or negative number). Notice that typical switches will have two different points where the switch will change states the “tripped” point and the “reset” point. Normally you have to travel past the reset point to get to the trip point and you have to travel past the tripped point to reach the reset point.

Figure: Typical Homing Sequence

  1. The axis moves toward the home switch at search velocity as defined by SEARCH_VEL in the [AXIS_n] section of the ini file. Usually there is some overshoot as depicted in the figure. Search velocity is usually fast enough so you won't fall asleep waiting for the axis to traverse from one side to the other, but not so fast that damage could be done.
  2. The axis moves in the reverse direction until the home switch changes state (off to on or on to off) plus a little to clear the switch.
  3. The axis moves toward the home switch at latch velocity as defined by LATCH_VEL in the [AXIS_n] section of the ini file. Usually this is at a much lower speed than search velocity to get a more accurate position. When the switch changes state if a home offset is defined it is applied.
  4. The axis moves to the home position. Usually the home location is not at the switch to prevent false tripping of the switch.

Figure [.] shows four possible homing sequences, along with the associated configuration parameters. For a more detailed description of what each configuration parameter does, see the following section.

Figure: Homing Sequences

0.1.3 Homing Configuration

There are six pieces of information that determine exactly how the home sequence behaves. They are defined in an [AXIS] section of the ini file.

SEARCH_VEL LATCH_VEL USE_INDEX Homing Type
nonzero nonzero NO Switch-only
nonzero nonzero YES Switch + Index
0 nonzero YES Index-only
0 0 NO None
Other combinations Error
Table: Homing Types

0.1.3.1 HOME_SEARCH_VEL

The default value is zero. A value of zero causes EMC to assume that there is no home switch; the search stage of homing is skipped.

If HOME_SEARCH_VEL is non-zero, then EMC assumes that there is a home switch. It begins by checking whether the home switch is already tripped. If so, it backs off the switch at HOME_SEARCH_VEL (the direction of the back-off is opposite the sign of HOME_SEARCH_VEL). Then it searches for the home switch by moving in the direction specified by the sign of 'HOME_SEARCH_VEL', at a speed determined by its absolute value. When the home switch is detected, the joint will stop as fast as possible, but there will always be some overshoot. The amount of overshoot depends on the speed. If it is too high, the joint might overshoot enough to hit a limit switch or crash into the end of travel. On the other hand, if 'HOME_SEARCH_VEL' is too low, homing can take a long time.

0.1.3.2 HOME_LATCH_VEL

Specifies the speed and direction that EMC uses when it makes its final accurate determination of the home switch (if present) and index pulse location (if present). It will usually be slower than the search velocity to maximise accuracy. If HOME_SEARCH_VEL and HOME_LATCH_VEL have the same sign, then the latch phase is done while moving in the same direction as the search phase. (In that case, EMC first backs off the switch, before moving towards it again at the latch velocity.) If HOME_SEARCH_VEL and HOME_LATCH_VEL have opposite signs, the latch phase is done while moving in the opposite direction from the search phase. That means EMC will latch the first pulse after it moves off the switch. If 'HOME_SEARCH_VEL' is zero (meaning there is no home switch), and this parameter is nonzero, EMC goes ahead to the index pulse search. If 'HOME_SEARCH_VEL' is non-zero and this parameter is zero, it is an error and the homing operation will fail. The default value is zero.

0.1.3.3 HOME_IGNORE_LIMITS

Can hold the values YES / NO. This flag determines whether EMC will ignore the limit switch inputs. Some machine configurations do not use a separate home switch, instead they route one of the limit switch signals to the home switch input as well. In this case, EMC needs to ignore that limit during homing. The default value for this parameter is NO.

0.1.3.4 HOME_USE_INDEX

Specifies whether or not there is an index pulse. If the flag is true (HOME_USE_INDEX = YES), EMC will latch on the rising edge of the index pulse. If false, EMC will latch on either the rising or falling edge of the home switch (depending on the signs of 'HOME_SEARCH_VEL' and 'HOME_LATCH_VEL'). The default value is NO.

0.1.3.5 HOME_OFFSET

Contains the location of the home switch or index pulse, in joint coordinates. It can also be treated as the distance between the point where the switch or index pulse is latched and the zero point of the joint. After detecting the index pulse, EMC sets the joint coordinate of the current point to “HOME_OFFSET”. The default value is zero.

0.1.3.6 HOME

The position that the joint will go to upon completion of the homing sequence. After detecting the index pulse, and setting the coordinate of that point to “HOME_OFFSET”, EMC makes a move to "HOME" as the final step of the homing process. The default value is zero. Note that even if this parameter is the same as “HOME_OFFSET”, the axis will slightly overshoot the latched position as it stops. Therefore there will always be a small move at this time (unless HOME_SEARCH_VEL is zero, and the entire search/latch stage was skipped). This final move will be made at the joint's maximum velocity. Since the axis is now homed, there should be no risk of crashing the machine, and a rapid move is the quickest way to finish the homing sequence.

0.1.3.7 HOME_IS_SHARED

If there is not a separate home switch input for this axis, but a number of momentary switches wired to the same pin, set this value to 1 to prevent homing from starting if one of the shared switches is already closed. Set this value to 0 to permit homing even if the switch is already closed.

0.1.3.8 HOME_SEQUENCE

Used to define a multi-axis homing sequence (“HOME ALL”) and enforce homing order (e.g., Z may not be homed if X is not yet homed). An axis may be homed after all axes with a lower HOME_SEQUENCE have already been homed and are at the HOME_OFFSET. If two axes have the same HOME_SEQUENCE, they may be homed at the same time. If HOME_SEQUENCE is -1 or not specified then this joint will not be homed by the HOME ALL sequence. HOME_SEQUENCE numbers start with 0 and there may be no unused numbers.

Index