2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
25 #include "streambuf.h"
28 uint16_t crc16_ccitt(uint16_t crc
, unsigned char a
)
30 crc
^= (uint16_t)a
<< 8;
31 for (int ii
= 0; ii
< 8; ++ii
) {
33 crc
= (crc
<< 1) ^ 0x1021;
41 uint16_t crc16_ccitt_update(uint16_t crc
, const void *data
, uint32_t length
)
43 const uint8_t *p
= (const uint8_t *)data
;
44 const uint8_t *pend
= p
+ length
;
46 for (; p
!= pend
; p
++) {
47 crc
= crc16_ccitt(crc
, *p
);
52 void crc16_ccitt_sbuf_append(sbuf_t
*dst
, uint8_t *start
)
55 const uint8_t * const end
= sbufPtr(dst
);
56 for (const uint8_t *ptr
= start
; ptr
< end
; ++ptr
) {
57 crc
= crc16_ccitt(crc
, *ptr
);
59 sbufWriteU16(dst
, crc
);
62 uint8_t crc8_calc(uint8_t crc
, unsigned char a
, uint8_t poly
)
65 for (int ii
= 0; ii
< 8; ++ii
) {
67 crc
= (crc
<< 1) ^ poly
;
75 uint8_t crc8_update(uint8_t crc
, const void *data
, uint32_t length
, uint8_t poly
)
77 const uint8_t *p
= (const uint8_t *)data
;
78 const uint8_t *pend
= p
+ length
;
80 for (; p
!= pend
; p
++) {
81 crc
= crc8_calc(crc
, *p
, poly
);
86 void crc8_sbuf_append(sbuf_t
*dst
, uint8_t *start
, uint8_t poly
)
89 const uint8_t * const end
= dst
->ptr
;
90 for (const uint8_t *ptr
= start
; ptr
< end
; ++ptr
) {
91 crc
= crc8_calc(crc
, *ptr
, poly
);
93 sbufWriteU8(dst
, crc
);
96 uint8_t crc8_xor_update(uint8_t crc
, const void *data
, uint32_t length
)
98 const uint8_t *p
= (const uint8_t *)data
;
99 const uint8_t *pend
= p
+ length
;
101 for (; p
!= pend
; p
++) {
107 void crc8_xor_sbuf_append(sbuf_t
*dst
, uint8_t *start
)
110 const uint8_t *end
= dst
->ptr
;
111 for (uint8_t *ptr
= start
; ptr
< end
; ++ptr
) {
114 sbufWriteU8(dst
, crc
);