Hi @kishans,
The gBleOverflow_c means that an internal limit is reached. So, in this case, will depend on your implementation, you could resend the same packets that you didn't receive.
This overflow is generated because the Maximum number of pending L2CA packets was reached. gMaxL2caQueueSize_c
This queue is used by the L2CAP layer to buffer packets when the LE controller cannot accept ACL Data packets any more.
Any new requests sent from the Host or application layer after this queue is full will generate a gBleOverflow_c event.
Also, when the queue transitions to empty state, a gTxEntryAvailable_c generic event will be generated. ble_config.h file
Regards,
Mario