KEYENCE LJ-V7000 Series User Manual
Page 9

9
LJ-V7000_COM_RM_E
Name
Definition that indicates the validity of a measurement value
Definition
Typedef enum {
LJV7IF_MEASURE_DATA_INFO_VALID = 0x00,
// Normal measurement data
LJV7IF_MEASURE_DATA_INFO_ALARM = 0x01,
// Measurement alarm data
LJV7IF_MEASURE_DATA_INFO_WAIT = 0x02
// Judgment wait data
} LJV7IF_MEASURE_DATA_INFO;
Description
This enumeration indicates the validity or invalidity of the measurement value.
Comment
-
Name
Definition that indicates the tolerance judgment result of the measurement value
Definition
Typedef enum {
LJV7IF_JUDGE_RESULT _HI = 0x01,
// HI
LJV7IF_JUDGE_RESULT _GO = 0x02,
// GO
LJV7IF_JUDGE_RESULT _LO = 0x04
// LO
} LJV7IF_JUDGE_RESULT;
Description
This enumeration indicates the tolerance judgment result for the measurement value in bit
units.
Comment
If the measurement value is measurement alarm data, the judgment result is 0x05 (both HI
and LO bits are 1).
Name
Get profile target buffer designation
Definition
Typedef enum {
LJV7IF_PROFILE_BANK_ACTIVE = 0x00,
// Active surface
LJV7IF_PROFILE_BANK_INACTIVE = 0x01
// Inactive surface
} LJV7IF_PROFILE_BANK;
Description
When the memory allocation is "double buffer" in the get profile command, this enumeration
designates which surface to get the profiles from.
Comment
"Active surface" refers to the surface of the buffer that profile data is being written onto. For
further details, refer to "9.2.9.2 Internal memory".
Name
Get profile position specification method designation (batch measurement: off)
Definition
Typedef enum {
LJV7IF_PROFILE_POS_CURRENT = 0x00,
// From current
LJV7IF_PROFILE_POS_OLDEST = 0x01,
// From oldest
LJV7IF_PROFILE_POS_SPEC = 0x02,
// Specify position
} LJV7IF_PROFILE_POS;
Description
In the get profile command, this enumeration indicates the specification method for the
profiles to get out of the profile data retained in the controller. In get profile, the profiles are
stored from oldest to newest.
From current
Gets the current profiles.
The end of the acquired profiles becomes the current profile.
From oldest
Gets the oldest profile.
The head of the acquired profiles becomes the oldest profile.
Specify position
Gets the specified number of profiles from the specified profile position.
The head of the acquired profiles becomes the profiles at the specified position.
Comment
For the specified number of profiles, refer to the individual structure definitions.