CRC
#define CRC 0x04 /* CRC error */
#define CRC(crc, ch) (crc = (crc >> 8) ^ crctab[(crc ^ (ch)) & 0xff])