[in] Specifies the driver object created by OpenNeoDevice.
iLocation
[in] Specifies the physical location of the script to be cleared on the neoVI device. Valid values are:
SCRIPT_LOCATION_FLASH_MEM = 0 (Valid only on a neoVI Fire or neoVI Red)SCRIPT_LOCATION_SDCARD = 1 (Valid only on a neoVI Fire or neoVI Red)SCRIPT_LOCATION_VCAN3_MEM = 4 (Valid only on a ValueCAN 3 device)
These values are defined in the icsnVC40.h file
Return Values
1 if the function succeeded. 0 if it failed for any reason. GetLastAPIError must be called to obtain the specific error. The errors that can be generated by this function are:
If a script exists in the specified location it will be erased from that location. If the script is running it will be stopped. Any function blocks that are running will be stopped.
Examples
int iRetVal;unsignedlong lLastErrNum;//Clear the script from it's storage location.//Both SCRIPT_LOCATION_FLASH_MEM and SCRIPT_LOCATION_SDCARD are persistent.//On a ValueCAN 3, SCRIPT_LOCATION_VCAN3_MEM will clear when the device//loses power or resets.iRetVal =icsneoScriptClear(hObject, DefaultScriptLocation);if(iRetVal ==0){printf("\nFailed to clear the script);}else{ printf("\nSuccessfully cleared the script");}
Int32 iResult;//clear CoreMiniiResult =icsNeoDll.icsneoScriptClear(m_hObject,Convert.ToInt32(CoreMiniStoreLocation.SCRIPT_LOCATION_FLASH_MEM));if(iResult ==0){lblCMStatus.Text="CoreMini Failed to Clear";}else{lblCMStatus.Text="CoreMini Cleared";}
Dim iResult As Int32
'//clear CoreMini
iResult = icsneoScriptClear(m_hObject, SCRIPT_LOCATION_FLASH_MEM)
If iResult = 0 Then
lblCMStatus.Text = "CoreMini Failed to Clear"
Else
lblCMStatus.Text = "CoreMini Cleared"
End If