Kuvée / COBS

Dependents:   Nucleo_cobs_test

Committer:
glansberry
Date:
Tue Feb 10 02:29:49 2015 +0000
Revision:
0:736db4334c89
Child:
2:64fdac5efaa1
COBS encoding, initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
glansberry 0:736db4334c89 1 #ifndef _COBS_H
glansberry 0:736db4334c89 2 #define _COBS_H
glansberry 0:736db4334c89 3
glansberry 0:736db4334c89 4 class COBS{
glansberry 0:736db4334c89 5
glansberry 0:736db4334c89 6 public:
glansberry 0:736db4334c89 7 void StuffData(unsigned char *ptr, unsigned long length, unsigned char *dst);
glansberry 0:736db4334c89 8 void UnStuffData(unsigned char *ptr, unsigned long length, unsigned char *dst);
glansberry 0:736db4334c89 9
glansberry 0:736db4334c89 10 };
glansberry 0:736db4334c89 11 #endif