Kuvée / COBS

Dependents:   Nucleo_cobs_test

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers COBS.h Source File

COBS.h

00001 #ifndef _COBS_H
00002 #define _COBS_H
00003 
00004 class COBS{
00005     
00006     public:
00007     void StuffData(unsigned char *ptr, unsigned long length, unsigned char *dst);
00008     int UnStuffData(unsigned char *ptr, unsigned long length, unsigned char *dst);
00009     
00010     };
00011 #endif