I have an app which communicates with a BLE device. It sends data packets @ 40hz to the phone. I'm using RxAndroidBle and everything works as it should (mostly anyway)
I'm currently trying to optimise for cpu and battery, and noticed for each packet received from the BLE device, i see the following in logcat:
E/bt_btif: bta_gattc_process_indicate, ignore HID ind/notificiation
This can't be great for cpu/battery consumption, logging at 40hz... it also means useful logs dissapear as they're pushed out by these chatty ones. My device isn't a HID - as far as i can work out.
Q1: What does this log even mean? Q2: How do i stop it?
Sorry for asking a previously answered question, but there aren't any good answers and i wanted to ask under #rxandroidbe to see if there's something configurable in the libary.