bglibs
Main Page
Related Pages
Modules
+
Data Structures
Data Structures
Data Structure Index
+
Data Fields
+
All
_
a
b
c
d
e
f
g
h
i
k
l
n
o
p
q
r
s
t
u
w
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
n
o
p
q
r
s
t
u
w
+
Files
File List
Examples
include
crc16_xmodem.h
1
#ifndef CRC16__XMODEM__H__
2
#define CRC16__XMODEM__H__
3
4
#include "uint16.h"
5
6
#define CRC16_XMODEM_POLY ((uint16)0x8408)
7
#define CRC16_XMODEM_INIT ((uint16)0x0000)
8
#define CRC16_XMODEM_POST ((uint16)0x0000)
9
10
extern
const
uint16 crc16_xmodem_table[256];
11
#define crc16_xmodem_update(C,D,L) gcrc16rfl((C),(D),(L),crc16_xmodem_table)
12
#define crc16_xmodem_block(B,L) crc16_xmodem_update(0,(B),(L))
13
14
#endif
Generated on Fri Feb 23 2018 10:24:53 for bglibs by
1.8.13