Programming Guide
125
int Year = (Version >> 28) + 2000;
int Month = (Version >> 24) & 0x0F;
int Day = (Version >> 16) & 0xFF;
int Hour = (Version >> 8) & 0xFF;
int Minute = Version & 0xFF;
printf(“%d/%d/%x %x:%x”, Year, Month, Day, Hour,
Minute);
For example, if Version = 0x9b191407, it represents “2009/
11/19 14:07”.
For hardware version, the least 16 bits are carrier board
version and the most 16 bits are daughter board version. If
most 16 bits are all zero, the hardware is a single board.
Version of carrier board or daughter board = (Major << 8 +
Minor).
For example, if Version = 0xA1A2, it represents carrier
board version is “A2” and daughter board version is “A1”.
Return Value
No error occurs if return value >= 0; if negative value, call AMGet-
ErrorText function to get error information about return codes.
Summary of Contents for HDV62
Page 11: ...vi List of Figures...
Page 25: ...14 Installation Guide...
Page 26: ...Installation Guide 15...
Page 27: ...16 Installation Guide 4 Click next until driver installation is complete...
Page 105: ...94 Programming Guide Video Proc Amp...
Page 163: ...152 ViewCreatorPro Utility...