aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/dim13/cobs/README.md
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2019-07-17 22:54:16 +0200
committerDimitri Sokolyuk <demon@dim13.org>2019-07-17 22:54:16 +0200
commit58cfe7fb2d16f054951db52259abd13d2c276e26 (patch)
tree523b382baafdbf6e419c32ba326eb5df5d02f475 /vendor/github.com/dim13/cobs/README.md
parent11957a880913b775101332b1191e0aa5e40b9cf4 (diff)
drop vendorHEADmaster
Diffstat (limited to 'vendor/github.com/dim13/cobs/README.md')
-rw-r--r--vendor/github.com/dim13/cobs/README.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/vendor/github.com/dim13/cobs/README.md b/vendor/github.com/dim13/cobs/README.md
deleted file mode 100644
index ec14b9e..0000000
--- a/vendor/github.com/dim13/cobs/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Consistent Overhead Byte Stuffing
-
-[![Build Status](https://travis-ci.org/dim13/cobs.svg?branch=master)](https://travis-ci.org/dim13/cobs)
-[![GoDoc](https://godoc.org/github.com/dim13/cobs?status.svg)](https://godoc.org/github.com/dim13/cobs)
-
-COBS encoder breaks a packet into one or more sequences of non-zero
-bytes. The encoding routine searches through the first 254 bytes of
-the packet looking for the first occurrence of a zero byte. If no
-zero is found, then a code of 0xFF is output, followed by the 254
-non-zero bytes. If a zero is found, then the number of bytes
-examined, n, is output as the code byte, followed by the actual
-values of the (n-1) non-zero bytes up to (but not including) the zero
-byte. This process is repeated until all the bytes of the packet have
-been encoded.
-
-See also: http://www.stuartcheshire.org/papers/COBSforToN.pdf