System CalibrateJumpTime

Performs the jump time calibration for open loop via hole drilling. This operation should be performed at least once before jump and fire drilling operation and maybe call whenever required, to maintain accuracy.

Syntax

System.CalibrateJumpTime()

 

Copy
Example
--Enable Lightning II galvo error checking in case of a fault -- single head system
Laser.GalvoErrorCheckEnable(0x0022, 0x0022)

--Alternatively, a dual head system instead
--Laser.GalvoErrorCheckEnable(0x2222, 0x2222)

--Open Loop mode using JumpAndFire requires a jump time calibration to be performed at least once before the drilling operation
--Only needed periodically to maintain accuracy
System.CalibrateJumpTime()

--Open Loop mode drilling we verify after firing the laser.  This settle checks a single Lightning II scan head system
System.EnableSettleChecking(SettleCheckMode.AfterFiring, SettleCheckPort.UseGSBusChannelStatus, 0x0066, 0x0066, 10000, 80)

--Alternatively this settle checks a dual Lightning II scan head system instead
--System.EnableSettleChecking(SettleCheckMode.AfterFiring, SettleCheckPort.UseGSBusChannelStatus, 0x6666, 0x6666, 10000, 80)

ScanAll()