GeoCOM Reference Manual
Theodolite Measurement and Calculation – TMC
Leica TPS1200 – Version 1.50
147
GRC_TMC_ANGLE_ERROR
1290
Angle or inclination measurement error. Check inclination
modes in commands.
GRC_TMC_BUSY
1293
TMC resource is locked respectively TMC task is busy.
Distance and angle data are not available.
Repeat measurement.
GRC_ABORT
8
Measurement through customer aborted.
GRC_SHUT_DOWN
12
System power off through customer.
See Also
TMC_DoMeasure
TMC_GetAngle5
Example
GRC_TYPE
rc;
TMC_HZ_V_ANG
OnlyAngle;
double
SlopeDistance;
// activate distance measurement
rc = TMC_DoMeasure(TMC_DEF_DIST, TMC_AUTO_INC);
if (rc == GRC_OK)
{
// distance measurement successful
rc = TMC_GetSimpleMea(3000, OnlyAngle,
SlopeDistance, TMC_MEA_INC);
if (rc == GRC_OK)
{
// use distance and angle values
else
{
// something with TMC_GetSimpleMea went wrong
}
else
{
// something with dist. measurement went wrong
}