4.4.26
Changes made for Pathfinder 5226 controllers.
This skips the delay whenever stamping mode is active — regardless of operation type. That's your bug on stamping-mode machines.
You want: skip the delay only when it's a radius operation and stamping mode is active. The correct condition:
if ((pOperation->Type != RADIUS_OPERATION) || !gRun.bStampingModeActive) Truth table:
| Type | Stamping | Current (&&) | Corrected (||) | |------|----------|---------------|-----------------| | BEND | OFF | delay | delay | | BEND | ON | skip | delay | | RADIUS | OFF | delay | delay | | RADIUS | ON | skip | skip |
The only case that changes is BEND + Stamping ON — it now correctly does the delay.
Changes made for Pathfinder 5226 controllers.
There is a calculation for doing an adjusted load for small parts. If the backgauge is too close to the clamp to load at zero the backgauge will move to 5" to load then once gripped move closer for the bends. The gripper backstop offset was not being considered in the calculation which makes it easier to load closer to the clamp. The gripper backstop offset is taken into account when deciding if adjusted load is needed now.