How Can Get Crc From Android Ble Scan Result?
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
Solution 1:
Why do you want the CRC? The Bluetooth controller will discard packets where the CRC doesn't match the packet contents.
The Bluetooth controller does not forward the CRC to the main CPU so you you can't get it.
Also, the 62 bytes are a concatenation of two packets: the advertising data and the scan response data.
Post a Comment for "How Can Get Crc From Android Ble Scan Result?"