Hi John-
Autofocus through PFE *sometimes* works for our 8530F -- the JEOL autofocus appears to work a little better -- it looks like it is scanning over a larger range in z. What parameters should i tweak in the ini file to try to adjust the autfocus parameters for the 8530F?
Hi Dan,
Unlike the 8900/8200/8500 auto-focus call (which is a Z stage scan using the optical signal with many adjustable parameters), for the 8x30 instruments we have to call the EIKS API function that JEOL provided. Unfortunately they do not indicate that there are any adjustable parameters for the 8230/8530 auto-focus function call. Here is my code:
' Call the auto focus EIKS function
itest& = J8K_StartOMAutoFocus(Jeolhandle&)
Call JeolGetError(itest&, "JeolAutoFocusScan8x30")
If ierror Then Exit Sub
' Wait before calling get auto-focus status
Call MiscDelay(CDbl(RealTimeInterval!), Now)
If icancelauto Or ierror Then Exit Sub
' Wait for completion. 0: Idling; 1: Running
istatus% = 1
Do Until istatus% = 0
itest& = J8K_ReadOMAutoFocusStatus(Jeolhandle&, istatus%)
Call JeolGetError(itest&, "JeolAutoFocusScan8x30")
If ierror Then Exit Sub
Call MiscDelay(CDbl(RealTimeInterval!), Now)
If icancelauto Or ierror Then Exit Sub
Loop
Do you see any adjustable parameters for the auto-focus in the JEOL software? If yes, what are they? If there are adjustable parameters you and/or I will have to ping JEOL to get them to provide an API call to allow us to set them from the EIKS interface.
john