ForceFirmwareUpdate Method - intrepidcs API

C/C++ declare - VB.NET declare - C# declare - Parameters - Return Values - Remarks - C/C++ example - VB.NET example - C# example

This method forces the firmware on neoVI device to be updated.

C/C++ Declare

void _stdcall icsneoForceFirmwareUpdate(void * hObject);

Visual Basic .NET Declare

Public Declare Function icsneoForceFirmwareUpdate Lib “icsneo40.dll” (ByVal hObject As IntPtr)

C# Declare

[DllImport(“icsneo40.dll”)] public static extern void icsneoForceFirmwareUpdate(IntPtr hObject);

Parameters

hObject

[in] Specifies the driver object created by OpenNeoDevice.

Return Values

None.

Remarks

This method is used to force the firmware on a neoVI device to be updated to the version stored in the DLL API.


Examples

C/C++ Example

icsneoForceFirmwareUpdate(hObject);

C# Example

icsNeoDll.icsneoForceFirmwareUpdate(m_hObject);

Visual Basic .NET Example

Call icsneoForceFirmwareUpdate(m_hObject)