This method returns the firmware version stored in the open neoVI device.
Examples
stAPIFirmwareInfo FirmwareInfo;
int iResult;
iResult = icsneoGetHWFirmwareInfo(m_hObject, &FirmwareInfo);
if(iResult == 0)
{
MessageBox::Show("Problem getting the neoVI's firmware information");
return;
}
stAPIFirmwareInfo FirmwareInfo = new stAPIFirmwareInfo();
int iResult;
iResult = icsNeoDll.icsneoGetHWFirmwareInfo(m_hObject, ref FirmwareInfo);
if(iResult == 0)
{
MessageBox.Show("Problem getting the neoVI's firmware information");
return;
}
Dim FirmwareInfo As stAPIFirmwareInfo
Dim iResult As Integer
iResult = icsneoGetHWFirmwareInfo(m_hObject, FirmwareInfo)
If iResult = 0 Then
MsgBox("Problem getting the neoVI's firmware information")
Exit Sub
End If