Page 1 of 1

Capture all beacons data real time

Posted: Sun Mar 03, 2019 3:51 pm
by arunbm123
hello Geeks

ESP_LOGI(TAG, "----------iBeacon Found---------");
struct AMessage * pxMessage = malloc(sizeof(struct AMessage));
pxMessage->minor = minor;
pxMessage->rssi = scan_result->scan_rst.rssi;

if (xQueueSendToBack(xQueue1, (void * ) pxMessage,TickType_t ) 0)) {
}


i am testing with many beacons...
I find Many Beacons are detected before xQueueSendToBack could return .
How to handle this situation.