5277
5226; Skip Switch Over Delay Bug Fix
Pathfinder
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.
| Model | Version | Released |
|---|---|---|
| 5226BB Rev F. | 4.04.26 | |
| 5226BB Rev G. | 5.00.25 | 4/10/2026 |