Lines Matching defs:fcs
77 ** Description This function calculate FCS for the RFCOMM frame
86 UINT8 fcs = 0xFF;
90 fcs = rfc_crctable[fcs ^ *p++];
94 return (0xFF - fcs);
102 ** Description This function checks FCS for the RFCOMM frame
107 ** received_fcs - received FCS
112 UINT8 fcs = 0xFF;
116 fcs = rfc_crctable[fcs ^ *p++];
120 fcs = rfc_crctable[fcs ^ received_fcs];
123 return (fcs == 0xCF);