FOR TIPS, gUIDES & TUTORIALS

subscribe to our Youtube

GO TO YOUTUBE
Ask a question

3971 questions

4522 answers

3352 comments

51319 members

Ask a question
0 votes
651 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

> 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