This method forces the firmware on neoVI device to be updated.
{% tabs %} {% tab title="C/C++ Declare" %}
void _stdcall icsneoForceFirmwareUpdate(void * hObject);
{% endtab %}
{% tab title="Visual Basic .NET Declare" %}
Public Declare Function icsneoForceFirmwareUpdate Lib “icsneo40.dll” (ByVal hObject As IntPtr)
{% endtab %}
{% tab title="C# Declare" %}
[DllImport(“icsneo40.dll”)] public static extern void icsneoForceFirmwareUpdate(IntPtr hObject);
{% endtab %} {% endtabs %}
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.
{% tabs %} {% tab title="C/C++ Example" %}
icsneoForceFirmwareUpdate(hObject);
{% endtab %}
{% tab title="C# Example" %}
icsNeoDll.icsneoForceFirmwareUpdate(m_hObject);
{% endtab %}
{% tab title="Visual Basic .NET Example" %}
Call icsneoForceFirmwareUpdate(m_hObject)
{% endtab %} {% endtabs %}