srec.5

来自「gpsd, a popular GPS daemon.」· 5 代码 · 共 243 行

5
243
字号
.\"Generated by db2man.xsl. Don't modify this, modify the source..de Sh \" Subsection.br.if t .Sp.ne 5.PP\fB\\$1\fR.PP...de Sp \" Vertical space (when we can't use .PP).if t .sp .5v.if n .sp...de Ip \" List item.br.ie \\n(.$>=3 .ne \\$3.el .ne 3.IP "\\$1" \\$2...TH "SREC" 5 "" "" "".SH NAMEsrec \- Motorola S-record record and file format.SH "DESCRIPTION".PPMotorola S\-records are a form of simple ASCII encoding for binary data\&. This format is commonly used for firmware uploads to GPSes, industrial robots, and other kinds of microcontroller\-driven hardware\&. It has several convenient properties, including inspectability, easy editing with any text editor, and checksumming for verification of transmission across noisy serial lines\&..PPAn S\-record file consists of a sequence of specially formatted ASCII character strings\&. An S\-record will be less than or equal to 78 bytes in length\&..PPThe order of S\-records within a file is of no significance and no particular order may be assumed\&..PPThe general format of an S\-record follows:.IP+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-//\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-//\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+| type | count | address  |            data           | checksum |+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-//\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-//\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+.TPtypeA char[2] field\&. These characters describe the type of record (S0, S1, S2, S3, S5, S7, S8, or S9)\&..TPcountA char[2] field\&. These characters when paired and interpreted as a hexadecimal value, display the count of remaining character pairs in the record\&..TPaddressA char[4,6, or 8] field\&. These characters grouped and interpreted as a hexadecimal value, display the address at which the data field is to be loaded into memory\&. The length of the field depends on the number of bytes necessary to hold the address\&. A 2\-byte address uses 4 characters, a 3\-byte address uses 6 characters, and a 4\-byte address uses 8 characters\&..TPdataA char [0\-64] field\&. These characters when paired and interpreted as hexadecimal values represent the memory loadable data or descriptive information\&..TPchecksumA char[2] field\&. These characters when paired and interpreted as a hexadecimal value display the least significant byte of the ones complement of the sum of the byte values represented by the pairs of characters making up the count, the address, and the data fields\&..PPEach record is terminated with a line feed\&. If any additional or different record terminator(s) or delay characters are needed during transmission to the target system it is the responsibility of the transmitting program to provide them\&..PPThere are 9 record types, as follows:.TPS0The type of record is 'S0' (0x5330)\&. The address field is unused and will be filled with zeros (0x0000)\&. The header information within the data field is divided into the following subfields\&..RS.TP 31.mname is char[20] and is the module name\&..TP2.ver is char[2] and is the version number\&..TP3.rev is char[2] and is the revision number\&..TP4.description is char[0\-36] and is a text comment\&..LP.RE.IPEach of the subfields is composed of ASCII bytes whose associated characters, when paired, represent one byte hexadecimal values in the case of the version and revision numbers, or represent the hexadecimal values of the ASCII characters comprising the module name and description\&..TPS1The type of record field is 'S1' (0x5331)\&. The address field is interpreted as a 2\-byte address\&. The data field is composed of memory loadable data\&..TPS2The type of record field is 'S2' (0x5332)\&. The address field is interpreted as a 3\-byte address\&. The data field is composed of memory loadable data\&..TPS3The type of record field is 'S3' (0x5333)\&. The address field is interpreted as a 4\-byte address\&. The data field is composed of memory loadable data\&..TPS5The type of record field is 'S5' (0x5335)\&. The address field is interpreted as a 2\-byte value and contains the count of S1, S2, and S3 records previously transmitted\&. There is no data field\&..TPS7The type of record field is 'S7' (0x5337)\&. The address field contains the starting execution address and is interpreted as a 4\-byte address\&. There is no data field\&..TPS8The type of record field is 'S8' (0x5338)\&. The address field contains the starting execution address and is interpreted as a 3\-byte address\&. There is no data field\&..TPS9The type of record field is 'S9' (0x5339)\&. The address field contains the starting execution address and is interpreted as a 2\-byte address\&. There is no data field\&..SH "EXAMPLE".PPShown below is a typical S\-record format file\&..nf  S00600004844521B  S1130000285F245F2212226A000424290008237C2A  S11300100002000800082629001853812341001813  S113002041E900084E42234300182342000824A952  S107003000144ED492  S5030004F8  S9030000FC.fi.PPThe file consists of one S0 record, four S1 records, one S5 record and an S9 record\&..PPThe S0 record is comprised as follows:.TP 3\(buS0 S\-record type S0, indicating it is a header record\&..TP\(bu06 Hexadecimal 06 (decimal 6), indicating that six character pairs (or ASCII bytes) follow\&..TP\(bu00 00 Four character 2\-byte address field, zeroes in this example\&..TP\(bu48 44 52 ASCII H, D, and R \- "HDR"\&..TP\(bu1B The checksum\&..LP.PPThe first S1 record is comprised as follows:.TP 3\(buS1 S\-record type S1, indicating it is a data record to be loaded at a 2\-byte address\&..TP\(bu13 Hexadecimal 13 (decimal 19), indicating that nineteen character pairs, representing a 2 byte address, 16 bytes of binary data, and a 1 byte checksum, follow\&..TP\(bu00 00 Four character 2\-byte address field; hexidecimal address 0x0000, where the data which follows is to be loaded\&..TP\(bu28 5F 24 5F 22 12 22 6A 00 04 24 29 00 08 23 7C Sixteen character pairs representing the actual binary data\&..TP\(bu2A The checksum\&..LP.PPThe second and third S1 records each contain 0x13 (19) character pairs and are ended with checksums of 13 and 52, respectively\&. The fourth S1 record contains 07 character pairs and has a checksum of 92\&..PPThe S5 record is comprised as follows:.TP 3\(buS5 S\-record type S5, indicating it is a count record indicating the number of S1 records.TP\(bu03 Hexadecimal 03 (decimal 3), indicating that three character pairs follow\&..TP\(bu00 04 Hexadecimal 0004 (decimal 4), indicating that there are four data records previous to this record\&..TP\(buF8 The checksum\&..LP.PPThe S9 record is comprised as follows:.TP 3\(buS9 S\-record type S9, indicating it is a termination record\&..TP\(bu03 Hexadecimal 03 (decimal 3), indicating that three character pairs follow\&..TP\(bu00 00 The address field, hexadecimal 0 (decimal 0) indicating the starting execution address\&..TP\(buFC The checksum\&..LP.SH "NOTES".TP 3\(buThere isn't any evidence that Motorola ever made use of the header information within the data field of the S0 record, as described above\&. This may have been used by some third party vendors\&..TP\(buThe Unix manual page on S\-records is the only place that a 78\-byte limit on total record length or 64\-byte limit on data length is documented\&. These values shouldn't be trusted for the general case\&..TP\(buThe count field can have values in the range of 0x3 (2 bytes of address + 1 byte checksum = 3, a not very useful record) to 0xff; this is the count of remaining character \fIpairs\fR, including checksum\&..TP\(buIf you write code to convert S\-Records, you should always assume that a record can be as long as 514 (decimal) characters in length (255 * 2 = 510, plus 4 characters for the type and count fields), plus any terminating character(s)\&. That is, in establishing an input buffer in C, you would declare it to be an array of 515 chars, thus leaving room for the terminating null character\&..LP.SH "SEE ALSO".PP \fBgpsd\fR(8), \fBgps\fR(1), \fBlibgps\fR(3), \fBlibgpsd\fR(3), \fBgpsfake\fR(1)\&. \fBgpsprof\fR(1)\&..SH "AUTHOR".PPFrom an anonymous web page, itself claiming to have been derived from an old Unix manual page\&. Now maintained by the the GPSD project\&. There is a project page for gpsd  here: \fIhttp://gpsd.berlios.de/\fR\&.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?