Functions | |
kvmStatus | kvmClose (kvmHandle h) |
kvmHandle | kvmDeviceOpen (int32 cardNr, kvmStatus *status, int32 deviceType) |
kvmStatus | kvmDeviceMountKmf (kvmHandle h) |
kvmStatus | kvmDeviceMountKmfEx (kvmHandle h, int *ldfMajor, int *ldfMinor) |
kvmHandle | kvmKmfOpen (const char *filename, kvmStatus *status, int32 deviceType) |
kvmHandle | kvmKmfOpenEx (const char *filename, kvmStatus *status, int32 deviceType, int *ldfMajor, int *ldfMinor) |
Close the connection to the Memorator (device or file) opened with kvmDeviceOpen() or kvmDeviceMountKmf(). The handle becomes invalid.
[in] | h | An open kvmHandle. |
Mount the log area on the SD card on a connected Kvaser Memorator.
param[in] h An open kvmHandle.
Mount the log area on the SD card on a connected Kvaser Memorator and return the logger data format (LDF) version.
param[in] h An open kvmHandle. param[out] ldfMajor Major LDF version kvmLDF_MAJOR_xxx. param[out] ldfMinor Minor LDF version.
Connect to a Memorator device and obtain a handle for subsequent device operations. The argument cardNr is the Card Number property (decreased by one) displayed in Kvaser Hardware.
[in] | cardNr | Card number |
[out] | status | kvmOK if completely successful, kvmERR_xxx (negative) if failure |
[in] | deviceType | kvmDEVICE_xxx |
Open a KMF file on a hard disk or SD card reader and obtain a handle for subsequent operations. deviceType is the device type that generated the file.
[in] | filename | KMF filename |
[out] | status | kvmOK if successful, otherwise kvmERR_xxx |
[in] | deviceType | kvmDEVICE_xxx |
kvmHandle kvmKmfOpenEx | ( | const char * | filename, |
kvmStatus * | status, | ||
int32 | deviceType, | ||
int * | ldfMajor, | ||
int * | ldfMinor | ||
) |
Open a KMF file on a hard disk or SD card reader and obtain a handle for subsequent operations and return the logger data format (LDF) version. deviceType is the device type that generated the file.
[in] | filename | KMF filename |
[out] | status | kvmOK if successful, otherwise kvmERR_xxx |
[in] | deviceType | kvmDEVICE_xxx |
[out] | ldfMajor | Major LDF version kvmLDF_MAJOR_xxx. |
[out] | ldfMinor | Minor LDF version. |