You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want raw payload to parse it myself.
I found there is no total_len in BLEAdvertisedDevice
class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks {
void onResult(BLEAdvertisedDevice advertisedDevice) {
uint8_t *payload = advertisedDevice.getPayload();
// I can't get total_len so I can't loop,
// or may be I should limit total_len to 62?
}
}