2022-09-05 05:48 PM
Hi guys,
I am using HSDatalog (v.1.4.0) with ST BLE Sensor App (4.16.1). I found one issue that the SensorTile.box FW got stuck if I click Start/Top too fast in ST BLE Sensor App. I did some debug and found it got stuck in the following code in hci_tl.c. Then, I tried to increase HCI_READ_PACKET_NUM_MAX, which does not solve the problem either.
static void free_event_list(void)
{
tHciDataPacket * pckt;
while(list_get_size(&hciReadPktPool) < HCI_READ_PACKET_NUM_MAX/2){
list_remove_head(&hciReadPktRxQueue, (tListNode **)&pckt);
list_insert_tail(&hciReadPktPool, (tListNode *)pckt);
}
}
Does anybody know how to solve this issue? Thanks!
BR,
Yong