Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
COBS.h
- Committer:
- glansberry
- Date:
- 2015-07-21
- Revision:
- 2:64fdac5efaa1
- Parent:
- 0:736db4334c89
File content as of revision 2:64fdac5efaa1:
#ifndef _COBS_H
#define _COBS_H
class COBS{
public:
void StuffData(unsigned char *ptr, unsigned long length, unsigned char *dst);
int UnStuffData(unsigned char *ptr, unsigned long length, unsigned char *dst);
};
#endif