File: crc16_xmodem.h

package info (click to toggle)
bglibs 2.04%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,468 kB
  • sloc: ansic: 15,821; perl: 674; sh: 63; makefile: 29
file content (14 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef CRC16__XMODEM__H__
#define CRC16__XMODEM__H__

#include "uint16.h"

#define CRC16_XMODEM_POLY ((uint16)0x8408)
#define CRC16_XMODEM_INIT ((uint16)0x0000)
#define CRC16_XMODEM_POST ((uint16)0x0000)

extern const uint16 crc16_xmodem_table[256];
#define crc16_xmodem_update(C,D,L) gcrc16rfl((C),(D),(L),crc16_xmodem_table)
#define crc16_xmodem_block(B,L) crc16_xmodem_update(0,(B),(L))

#endif