Changes between Version 12 and Version 13 of S6350serialcom
- Timestamp:
- 10/27/08 11:45:53 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S6350serialcom
v12 v13 17 17 18 18 The breakdown of the command is as follows: 19 {{{ 19 20 Byte 1 is the Start of Frame, always 01 20 21 Byte 2 and 3 is the length of the command including the 2 byte check sum that is added to the end, Least Significant Byte first … … 27 28 Byte 11 is the optional mask that is not set 28 29 Bytes 12 and 13 are the checksum 29 30 }}} 30 31 The resulting command could look like this: 31 32 chrB(&h01) + chrB(&h0D) + chrB(&h00) + chrB(&h00) + chrB(&h00) + chrB(&h00) + chrB(&h60) + chrB(&h11) + chrB(&h07) + chrB(&h01) + chrB(&h00) + chrB(&h7B) + chrB(&h84) … … 50 51 The resulting command could look like this: 51 52 ChrB(&h01) + ChrB(&h0D) + ChrB(&h00) + ChrB(&h00) + ChrB(&h00) + ChrB(&h00) + ChrB(&h60) + ChrB(&h11) + ChrB(&h27) + ChrB(&h01) + ChrB(&h00) + ChrB(&h5B) + ChrB(&hA4) 53 52 54 53 55