Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 420 Bytes

File metadata and controls

13 lines (7 loc) · 420 Bytes

wasp-java

Java implementation of the wasp1 protocol.

wasp data format

Wasp messages are delimited by [ and ] and contain a 16 bit checksum (CCITT). Escaping is done with \.

[<message payload><16 bit CCITT>]

If [, ] or \ appear inside a message (payload or checksum), they are escaped by prefixing \ and xor-ing the offending character with 0x20.

Footnotes

  1. Why Another Serial Protocol?