Hello,
I am attempting to use Open GTS server to parse GPS
data from my device please let me know if i would
add these protocols listed below to
TrackClientPacketHandler.java and NMEA0183.java source code
in way that to customize the template server as my
device communication server ?
1- GT connects to server on specified TCP port and gives this string/
message
#[IMEI]>$GT109,00,[IMSI]<*[CS][CR][LF]
e.g. #123456789012345>$GT109,00,543210987654321<*00[CR][LF]
2- Server authenticates GT and send back this string
#[IMEI],[DT],[SID],[DC]>$GT109,00,[IMSI]<*[CS][CR][LF]
e.g. #123456789012345,101227183212,00001,00>
$GT109,00,543210987654321<*00[CR][LF]
imei, datetime,session ID, device code>$device name,device
address(numbers at one place), IMSI(unique for each mobile number-
Individual mobile service identification)<* [CS] is two-digit
checksum, currently hard-coded to 00,[CR] is Carriage Return, [LF] is
Line Feed, ASCII Code: 10 (Dec) or 0x0A (Hex)
3- FS20K sensor
#[IMEI],[DT],[SID],[DC]>$GF2K1,[ADD],[CMD],[PRES],[TEMP0],[TEMP1],
[TEMP2]<*[CS][CR][LF]
e.g. #123456789012346,100920133208,00000,03>
$GF2K1,4,39,6521.2,32.2,32.1,33.01<*00[CR][LF]
Thanks.