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@0:736db4334c89, 2015-02-10 (annotated)
- 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?
| User | Revision | Line number | New 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 |