Changes

no edit summary
Line 1: Line 1:  
__TOC__
 
__TOC__
   −
'''General command structure'''
+
==General command structure==
 
General communication packet structure is as in table below. It consists of CMD_ID (2 bytes), Data length of command and payload.
 
General communication packet structure is as in table below. It consists of CMD_ID (2 bytes), Data length of command and payload.
 
{| class="wikitable"
 
{| class="wikitable"
Line 13: Line 13:  
|}
 
|}
   −
'''Modified file transfer protocol'''
+
==Modified file transfer protocol==
    
'''Initialization packet'''
 
'''Initialization packet'''
Line 83: Line 83:  
|}
 
|}
   −
'''Request file path (CMD_ID 0x000C)'''
+
==Request file path (CMD_ID 0x000C)==
 
First after connecting to server and seeing bit set in init packet the server should send file path request command.
 
First after connecting to server and seeing bit set in init packet the server should send file path request command.
 
{| class="wikitable"
 
{| class="wikitable"
Line 95: Line 95:  
|}
 
|}
   −
'''File path response (CMD_ID 0x000D)'''
+
==File path response (CMD_ID 0x000D)==
 
This is a response to file path request (0x000C) command.
 
This is a response to file path request (0x000C) command.
 
{| class="wikitable"
 
{| class="wikitable"
Line 107: Line 107:  
|}
 
|}
   −
'''File request command (CMD_ID 0x0008)'''
+
==File request command (CMD_ID 0x0008)==
 
After device is connected for file upload server initiates file transfer by sending FILE REQ command.
 
After device is connected for file upload server initiates file transfer by sending FILE REQ command.
 
{| class="wikitable"
 
{| class="wikitable"
Line 120: Line 120:  
Device should answer with START command described above indicating size and CRC of requested file.
 
Device should answer with START command described above indicating size and CRC of requested file.
   −
'''Start file transfer command (CMD_ID 0x0001)'''
+
==Start file transfer command (CMD_ID 0x0001)==
 
After device received file request command from server (0x0008) device sends START command with file data (file size in bytes).
 
After device received file request command from server (0x0008) device sends START command with file data (file size in bytes).
 
{| class="wikitable"
 
{| class="wikitable"
Line 134: Line 134:  
|}
 
|}
   −
'''Resume file transfer command (CMD_ID 0x0002)'''
+
==Resume file transfer command (CMD_ID 0x0002)==
 
In a response to the START command a RESUME command must be sent from server.
 
In a response to the START command a RESUME command must be sent from server.
 
{| class="wikitable"
 
{| class="wikitable"
Line 147: Line 147:  
To begin file transfer from the start, offset should be set to 0 (4 bytes value). In case when the file transfer was interrupted, to resume file transfer, offset can be set to the desired value (1 ≤ [offset] ≤ [file packets]).
 
To begin file transfer from the start, offset should be set to 0 (4 bytes value). In case when the file transfer was interrupted, to resume file transfer, offset can be set to the desired value (1 ≤ [offset] ≤ [file packets]).
   −
'''Synchronize file transfer command (CMD_ID 0x0003)'''
+
==Synchronize file transfer command (CMD_ID 0x0003)==
 
In a response to the RESUME command SYNC command is sent from device.
 
In a response to the RESUME command SYNC command is sent from device.
 
{| class="wikitable"
 
{| class="wikitable"
Line 160: Line 160:  
By sending SYNC command it is ensured that next data command will contain file data starting from the specified offset.
 
By sending SYNC command it is ensured that next data command will contain file data starting from the specified offset.
   −
'''File data transfer command (CMD_ID 0x0004)'''
+
==File data transfer command (CMD_ID 0x0004)==
 
After sending SYNC command file data transfer is started by sending DATA commands.
 
After sending SYNC command file data transfer is started by sending DATA commands.
 
{| class="wikitable"
 
{| class="wikitable"
Line 181: Line 181:  
''Initial value, when calculating CRC, is previously received packet (CMD ID 0x0004) CRC value.''
 
''Initial value, when calculating CRC, is previously received packet (CMD ID 0x0004) CRC value.''
   −
'''File transfer status command (CMD_ID 0x0005)'''
+
==File transfer status command (CMD_ID 0x0005)==
 
After file transfer is completed and no more files are required from device, server should send COMPLETED command to the device (this command doesn’t work after executing repeat init command 0x0009 – in this case the server should send close session 0x0000 command mentioned before).
 
After file transfer is completed and no more files are required from device, server should send COMPLETED command to the device (this command doesn’t work after executing repeat init command 0x0009 – in this case the server should send close session 0x0000 command mentioned before).
 
{| class="wikitable"
 
{| class="wikitable"
Line 222: Line 222:  
After COMPLETED command device should disconnect from the server.
 
After COMPLETED command device should disconnect from the server.
   −
'''Initialization packet repeat command (CMD_ID 0x0009)'''
+
==Initialization packet repeat command (CMD_ID 0x0009)==
 
When sent, the initialization packet is repeated. This is used, when all of the files are downloaded and additional check is carried out for any additional files, that may have been captured during the download operation.
 
When sent, the initialization packet is repeated. This is used, when all of the files are downloaded and additional check is carried out for any additional files, that may have been captured during the download operation.
   −
'''File transfer visual flow'''
+
==File transfer visual flow==
 
[[File:Flow.png|center|frameless|867x867px]]
 
[[File:Flow.png|center|frameless|867x867px]]