I have receive scan result with 62 bytes each and every time from ble device.
Using below callback code to get scan result, I can able to get RSSI but not getting CRC. or What is the logic for getting CRC for one frame?
Format of data from ble device like Packet Header,Advertising data,CRC,RSSI.
how can get CRC from data or android ble module.
public void onScanResult(int callbackType, ScanResult result) {
byte[] data = result.getScanRecord().getBytes();
//get 62 byte array
}
How can get CRC from scan result?