FOR TIPS, gUIDES & TUTORIALS

subscribe to our Youtube

GO TO YOUTUBE

4167 questions

4739 answers

3460 comments

0 members

We are migrating to our new platform at https://community.teltonika.lt. Moving forward, you can continue discussions on this new platform. This current platform will be temporarily maintained for reference purposes.
0 votes
741 views
in Vehicle tracking by
Hello,

currently i'm developing FMB010 python server for communication with device, but device doesn't clear data after received data number ack,

communication looks like.

1. device sends imei

2. server responds b'\x01'

3. device sends data (b'000000000000004408010000016c4c..........' - according to spec data number is 01)

4. server sends received data number ( b'000001' )

and then device sends nothing and after timeout, it happens all over again, data is still on flash, what response should i send to device ? or is it as it should be ?

1 Answer

0 votes
by anonymous

> server sends received data number ( b'000001' )

Should send 3 zero bytes, 4 bytes in total.

by
so it should go like 00 00 00 01 then response ought to be b'00000001' ?
stil the same