Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
equipment:cnc:mill:maintenance [2024/02/20 16:31] – Adjust headings samp20equipment:cnc:mill:maintenance [2024/11/19 21:42] (current) – external edit 127.0.0.1
Line 83: Line 83:
 The MESA pins (as viewed from the top of the card) are assigned to LinuxCNC nets according to the following diagram: The MESA pins (as viewed from the top of the card) are assigned to LinuxCNC nets according to the following diagram:
  
-{{ :equipment:cnc:mill:mesa-pinout.svg |}}+{{drawio>equipment:cnc:mill:mesa-pinout.png}}
  
 ===== Spindle VFD control ===== ===== Spindle VFD control =====
Line 91: Line 91:
 The VFD signals are also used in combination with the door switch to inhibit motion. The HAL configuration corresponds to the following logic diagram: The VFD signals are also used in combination with the door switch to inhibit motion. The HAL configuration corresponds to the following logic diagram:
  
-{{ :equipment:cnc:mill:spindle-inhibit.svg |}}+{{drawio>equipment:cnc:mill:spindle-inhibit.png}}
  
 Opening the door will always inhibit motion as this is connected to the reset pin of the flipflop. In order for motion to continue one of two things is required: the spindle to be disabled, or the spindle to be at speed. The ''spindle-at-speed'' signal ensures that LinuxCNC waits until the spindle has fully spun up before continuing after an interruption. Opening the door will always inhibit motion as this is connected to the reset pin of the flipflop. In order for motion to continue one of two things is required: the spindle to be disabled, or the spindle to be at speed. The ''spindle-at-speed'' signal ensures that LinuxCNC waits until the spindle has fully spun up before continuing after an interruption.
Line 98: Line 98:
  
 The touch probe signal ''probe-hw'' is connected to ''motion.probe-input'' through a oneshot pulse generator. This effectively pulse stretches the incoming signal to ensure a clean trigger. The touch probe signal ''probe-hw'' is connected to ''motion.probe-input'' through a oneshot pulse generator. This effectively pulse stretches the incoming signal to ensure a clean trigger.
 +
 +===== Emergency stop =====
 +
 +The emergency stop system is split into a hardware e-stop circuit and a software stop.
 +
 +The hardware e-stop circuit runs at 240V and provides power to the VFD contactor and 48V stepper power supply. This circuit is fed from the following chain:
 +
 +  - Main power NVR switch.
 +  - E-stop button.
 +
 +The software e-stop has a few different sources:
 +
 +  * GPIO from the e-stop button (''estop-button-fault'').
 +  * LinuxCNC internal faults.
 +
 +While the MESA card is configured with an ''estop-relay'' output that would link the software e-stop to the hardware, we have decided not to connect it. The main reason is to allow the VFD active braking to work correctly during a soft e-stop. We may revisit this later, perhaps with a time delay before cutting the relay.
 +
 +===== Axis limits and homing =====
 +
 +<callout title="Info" type="info" icon="true">This is the desired configuration, not the current configuration. Remove this notice once fixed.</callout>
 +
 +See LinuxCNC's [[http://linuxcnc.org/docs/html/config/ini-homing.html|Homing Configuration]] page for an understanding of homing and limits. Remember that CNC coordinates are referring to tool motion relative to the workpiece. That can be confusing when the workpiece moves instead of the tool (as is the case for the Y axis). In our case the coordinates result in the following motions:
 +
 +  * X axis origin is with the spindle to the left. Coordinates become more positive with the spindle moving right.
 +  * Y axis origin is with the table at the back. Coordinates become more positive with the table moving forward.
 +  * Z axis origin is with the spindle at the top. Coordinates become more negavive with the spindle moving down.
 +
 +Each axis of the CNC mill has a pair of limit switches. Each pair is wired to a single input. The soft limits in the image below (B/C) are configured to be a small distance away from the hard limits (A/D). For X and Y the machine origin is set at negative soft limit (B) such that all coordinates are positive. For Z the machine origin is set at the positive soft limit (C) such that all coordinates are negative.
 +
 +{{ :equipment:cnc:mill:axis-limits.svg |}}
 +
 +For each joint we can home on the negative or positive limit switch, and this can be different to the machine origin. For convenience we have chosen the following homing directions:
 +
 +  * X axis home towards negative limit. The spindle moves to the left.
 +  * Y axis home towards positive limit. The table moves to the front.
 +  * Z axis home towards positive limit. The spindle moves up.
 +
 +Note that the Y axis homes at the front despite the origin being at the back. This is to make the table easy to reach once homing has completed.
 +
 +For convenience let's define some new parameters:
 +  - ''travel_n = Dn-An''. Full travel between limit switches.
 +  - ''margin = B-A = D-C''. Margin between limit switch and soft limit.
 +
 +For each joint the ini settings should be configured like so:
 +
 +<code>
 +[JOINT_0]
 +# X axis
 +HOME_OFFSET = -margin
 +MIN_LIMIT = 0
 +MAX_LIMIT = travel_x - (margin*2)
 +HOME = MIN_LIMIT + 20
 +
 +[JOINT_1]
 +# Y axis
 +HOME_OFFSET = travel_y - margin
 +MIN_LIMIT = 0
 +MAX_LIMIT = travel_y - (margin*2)
 +HOME = MAX_LIMIT - 20
 +
 +[JOINT_2]
 +# Z axis
 +HOME_OFFSET = -margin
 +MIN_LIMIT = -(travel_z - (margin*2))
 +MAX_LIMIT = 0
 +HOME = MAX_LIMIT - 5
 +</code>
  
  • equipment/cnc/mill/maintenance.1708446686
  • Last modified: 5 months ago
  • (external edit)