'\" t
.\" srecord - manipulate eprom load files
.\" Copyright (C) 2001, 2006, 2007 Peter Miller
.\"
.\" This program is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
.\" the Free Software Foundation; either version 3 of the License, or
.\" (at your option) any later version.
.\"
.\" This program is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
.\" GNU General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public License
.\" along with this program. If not, see
.\" .
.\"
.ds n) srec_fpc
.TH \*(n) 5 SRecord "Reference Manual"
.SH NAME
\*(n) \- four packed code file format
.XX "srec_fpc(5)" "Four Packed Code (FPC) file format"
.SH SYNOPSIS
All ASCII based file formats have one disadvantage in common: they all
need more than double the amount of characters as opposed to the number
of bytes to be sent. Address fields and checksums will add even more
characters. So the shorter the records, the more characters have to be
sent to get the file across.
.PP
The FPC format helps to reduce the number of characters needed to
send a file in ASCII format, although it still needs more characters
than the actual bytes it sends. FPC stands for "Four Packed Code".
The reduction is accomplished by squeezing 4 real bytes into 5 ASCII
characters. In fact every ASCII character will be a digit in the base 85
number system. There aren't enough letters, digits and punctuation marks
available to get 85 different characters, but if we use both upper case
and lower case letters we will manage. This implies that the FPC \fIis
case sensitive\fP, as opposed to all other ASCII based file formats.
.SS Base 85
The numbering system is in base 85, and is somewhat hard to understand
for us humans who are usually only familiar with base 10 numbers. Some of
us understand base 2 and base 16 as well, but base 85 is for most people
something new. Luckily we don't have to do any math with this number
system. We just convert a 32 bit number into a 5 digit number in base 85.
A 32 bit number has a range of 4,294,967,296, while a 5 digit number in
base 85 has a range of 4,437,053,125, which is enough to do the trick.
One drawback is that we always have to send multiples of 4 bytes, even
if we actually want to send 1, 2 or 3 bytes. Unused bytes are padded
with zeroes, and are discarded at the receiving end.
.PP
The digits of the base 85 numbering system start at %, which represents
the value of 0. The highest value of a digit in base 85 is 84, and
is represented by the character 'z'. If you want to check this with a
normal ASCII table you will notice that we have used one character too
many! Why? I don't know, but for some reason we have to skip the '*'
character in the row. This means that after the ')' character follows
the '+' character.
.PP
We can use normal number conversion algorithms to generate the FPC
digits, with this tiny difference. We have to check whether the digit
is going to be equal or larger than the ASCII value for '*'. If this is
the case we have to increment the digit once to stay clear of the '*'.
In base 85 MSD digits go first, like in all number systems!
.PP
The benefit of this all is hopefully clear. For every 4 bytes we only
have to send 5 ASCII characters, as opposed to 8 characters for all
other formats.
.SS Records
Now we take a look at the the formatting of the FPC records. We look
at the record at byte level, not at the actual base 85 encoded level.
Only after formatting the FPC record at byte level we convert 4 bytes
at a time to a 5 digit base 85 number. If we don't have enough bytes
in the record to fill the last group of 5 digits we will add bytes with
the value of 0 behind the record.
.TS
center,allbox,tab(;);
l l l l l l.
$;ss;cc;ffff;aaaaaaaa;dddddddd
.TE
The field are defined as:
.TP 8n
\fB$\fP
Every line starts with the character $, all other characters are digits
of base 85.
.TP 8n
ss
The checksum.
A one byte 2's-complement checksum of all bytes of the record.
.TP 8n
cc
The byte-count.
A one byte value, counting all the bytes in the record minus 4.
.TP 8n
ffff
Format code, a two byte value, defining the record type.
.TP 8n
aaaaaaaa
The address field.
A 4 byte number representing the first address of this record.
.TP 8n
dddddddd
The actual data of this record.
.SS Record Begin
Every record begins with the ASCII character "\fB$\fP". No spaces or
tabs are allowed in a record. All other characters in the record are
formed by groups of 5 digits of base 85.
.SS Checksum field
This field is a one byte 2's-complement checksum of the entire record.
To create the checksum make a one byte sum from all of the bytes from
all of the fields of the record:
.PP
Then take the 2's-complement of this sum to create the final checksum.
The 2's-complement is simply inverting all bits and then increment by 1
(or using the negative operator). Checking the checksum at the receivers
end is done by adding all bytes together including the checksum itself,
discarding all carries, and the result must be $00. The padding bytes
at the end of the line, should they exist, should not be included in
checksum. But it doesn't really matter if they are, for their influence
will be 0 anyway.
.SS Byte Count
The byte count \fBcc\fP counts the number of bytes in the current record
minus 4. So only the number of address bytes and the data bytes are
counted and not the first 4 bytes of the record (checksum, byte count
and format flags). The byte count can have any value from 0 to 255.
.PP
Usually records have 32 data bytes. It is not recommended to send
too many data bytes in a record for that may increase the transmission
time in case of errors. Also avoid sending only a few data bytes per
record, because the address overhead will be too heavy in comparison to
the payload.
.SS Format Flags
This is a 2 byte number, indicating what format is represented in this
record. Only a few formats are available, so we actually waste 1 byte
in each record for the sake of having multiples of 4 bytes.
.PP
Format code 0 means that the address field in this record is to be treated
as the absolute address where the first data byte of the record should
be stored.
.PP
Format code 1 means that the address field in this record is missing.
Simply the last known address of the previous record +1 is used to store
the first data byte. As if the FPC format wasn't fast enough already ;-)
.PP
Format code 2 means that the address field in this record is to be
treated as a relative address. Relative to what is not really clear.
The relative address will remain in effect until an absolute address is
received again.
.SS Address Field
The first data byte of the record is stored in the address specified
by the Address field \fBaaaaaaaa\fP. After storing that data byte,
the address is incremented by 1 to point to the address for the next
data byte of the record. And so on, until all data bytes are stored.
.PP
The length of the address field is always 4 bytes, if present of course.
So the address range for the FPC format is always 2**32.
.PP
If only the address field is given, without any data bytes, the address
will be set as starting address for records that have no address field.
.PP
Addresses between records are non sequential. There may be gaps in
the addressing or the address pointer may even point to lower addresses
as before in the same file. But every time the sequence of addressing
must be changed, a format 0 record must be used. Addressing within one
single record \fIis\fP sequential of course.
.SS Data Field
This field contains 0 or more data bytes. The actual number of data bytes
is indicated by the byte count in the beginning of the record less the
number of address bytes. The first data byte is stored in the location
indicated by the address in the address field. After that the address is
incremented by 1 and the next data byte is stored in that new location.
This continues until all bytes are stored. If there are not enough data
bytes to obtain a multiple of 4 we use 0x00 as padding bytes at the end
of the record. These padding bytes are ignored on the receiving side.
.SS End of File
End of file is recognized if the first four bytes of the record all
contain 0x00. In base 85 this will be ``\f[CW]$%%%%%\fP''. This is
the only decent way to terminate the file.
.SS Size Multiplier
In general, binary data will expand in sized by approximately 1.7 times
when represented with this format.
.SH Example
Now it's time for an example. In the first table you can see the byte
representation of the file to be transferred. The 4th row of bytes is
not a multiple of 4 bytes. But that does not matter, for we append $00
bytes at the end until we do have a multiple of 4 bytes. These padding
bytes are not counted in the byte count however!
.RS
.nf
.ft CW
D81400000000B000576F77212044696420796F7520726561
431400000000B0106C6C7920676F207468726F7567682061
361400000000B0206C6C20746861742074726F75626C6520
591100000000B030746F207265616420746869733F000000
00000000
.ft P
.fi
.RE
Only after converting the bytes to base 85 we get the records of the
FPC type file format presented in the next table. Note that there is
always a multiple of 5 characters to represent a multiple of 4 bytes in
each record.
.RS
.nf
.ft CW
$kL&@h%%,:,B.\e?00EPuX0K3rO0JI))
$;UPR'%%,:GTV%/KJ7@GE[kYz
$B[6\e;%%,:\eKIn?GFWY/qKI1G5:;-_e
$%%%%%
.ft P
.fi
.RE
As you can see the length of the lines is clearly shorter than the
original ASCII lines.
.SH SEE ALSO
http://sbprojects.fol.nl/knowledge/fileformats/pfc.htm
.SH AUTHOR
This man page was taken from the above Web page.
It was written by
San Bergmans
.PP
For extra points:
Who invented this format?
Where is it used?