Custom Transfer Table

HostExplorer

Custom Transfer Table

A custom transfer table is a master table that you create which specifies translate settings used for data transferred between the host and PC. You can save this user-defined .ini file anywhere on your disk. The table must include an [Upload] section which specifies a PC-to-host file transfer, and a [Download] section which specifies a host-to-PC file transfer. It should follow this format:

[Upload]
aa=mm
bb=nn
...

[Download]
jj=xx
kk=yy

The [Upload] section lets you define translation from PC to host values in hexadecimal format. The left side of the equal sign is the PC value in hexadecimal format and the right side of the equal sign is the translated value for the host in hexadecimal format.

The [Download] section lets you define translation from host to PC values in hexadecimal format. The left side of the equal sign is the host value in hexadecimal format and the right side of the equal sign is the translated value for the PC in hexadecimal format.

Note: 
  In both the [Upload] and [Download] sections, you should list all values, 00 to FF, in the table.

The following is an example of a custom transfer table:

[Upload]
00=00
01=01
02=02
...
20=40
21=5A
22=7F
...
30=F0
31=F1
...
FF=FF

[Download]
00=00
01=01
...
40=20
...
F0=30
F1=31
F2=32
...
FF=FF
Note: 
  The ellipses in the sample represent omitted values. However, in an actual custom table, all values must appear in the two sections.