forked from srnilssen/Arduino-Robot-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcobs.h
81 lines (59 loc) · 2.16 KB
/
cobs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*****************************************************************************
*
* cobs.h
*
* Consistent Overhead Byte Stuffing
* Source: https://bitbucket.org/cmcqueen1975/cobs-c/wiki/Home
*
****************************************************************************/
#ifndef COBS_H_
#define COBS_H_
/*****************************************************************************
* Includes
****************************************************************************/
#include <stdint.h>
#include <stdlib.h>
/*****************************************************************************
* Defines
****************************************************************************/
#define COBS_ENCODE_DST_BUF_LEN_MAX(SRC_LEN) ((SRC_LEN) + ((SRC_LEN)/254u) + 1)
#define COBS_DECODE_DST_BUF_LEN_MAX(SRC_LEN) (((SRC_LEN) == 0) ? 0 : ((SRC_LEN) - 1))
/*****************************************************************************
* Typedefs
****************************************************************************/
typedef enum
{
COBS_ENCODE_OK = 0x00,
COBS_ENCODE_NULL_POINTER = 0x01,
COBS_ENCODE_OUT_BUFFER_OVERFLOW = 0x02
} cobs_encode_status;
typedef struct
{
size_t out_len;
cobs_encode_status status;
} cobs_encode_result;
typedef enum
{
COBS_DECODE_OK = 0x00,
COBS_DECODE_NULL_POINTER = 0x01,
COBS_DECODE_OUT_BUFFER_OVERFLOW = 0x02,
COBS_DECODE_ZERO_BYTE_IN_INPUT = 0x04,
COBS_DECODE_INPUT_TOO_SHORT = 0x08
} cobs_decode_status;
typedef struct
{
size_t out_len;
cobs_decode_status status;
} cobs_decode_result;
/*****************************************************************************
* Function prototypes
****************************************************************************/
#ifdef __cplusplus
extern "C" {
#endif
cobs_encode_result cobs_encode(uint8_t *dst_buf_ptr, size_t dst_buf_len, const uint8_t * src_ptr, size_t src_len);
cobs_decode_result cobs_decode(uint8_t *dst_buf_ptr, size_t dst_buf_len, const uint8_t * src_ptr, size_t src_len);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* COBS_H_ */