Lines Matching defs:fcs
74 ** Description This function calculate FCS for the RFCOMM frame
83 UINT8 fcs = 0xFF;
87 fcs = rfc_crctable[fcs ^ *p++];
91 return (0xFF - fcs);
99 ** Description This function checks FCS for the RFCOMM frame
104 ** received_fcs - received FCS
109 UINT8 fcs = 0xFF;
113 fcs = rfc_crctable[fcs ^ *p++];
117 fcs = rfc_crctable[fcs ^ received_fcs];
120 return (fcs == 0xCF);