Skip to content

Latest commit

 

History

History
59 lines (44 loc) · 1.22 KB

File metadata and controls

59 lines (44 loc) · 1.22 KB

ForceFirmwareUpdate Method - intrepidcs API

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.

Examples

{% 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 %}