Mobile Measurement Wizard for catman®Professional 3.1
This article concerns mobile data acquisition with an amplifier inside the car/truck and the monitoring outside connected with a radio modem.
To avoid a drop out when the connection to the amplifier is lost for a while, it is important to ignore the error "timeout - connection lost". This error message would stop the data acquisition.
MGCplus has a big buffer to store the values during the failed connection. Therefore values are not lost! The data during the gap are seen after the reconnection in a time-lapse and the database is 100% correct.
The script modification was done for the data logging function of the Measurement Wizard of catman 3.1. This changes can be found in the SUB "Logger" around line 202.
ACQRead ReadBlock ReadTimeout
IF Err < 0
REM *+*+*+*+* Changes for radio modem *+*+*+*+*
REM - Ignores timeout error during read values -
IF Err <> -10
CHARTREDRAW
CALL GetResource "R7" StringRes
TBuf1 = Error.Text
STRCAT TBuf2 StringRes ": " TBuf1
Message TBuf2 0 i
ACQSTOP
EXIT
ELSE
Err=0
ENDIF
REM *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*


