Hello Devzone,
I've been using nRF52810, SoftDevice 112 (5.1.1), for a Mic recording application. What I'm trying to do is sample PDM MEMS mic data through PDM interface and send simultaneously the PCM samples over bluetooth. With a buffer size of 500Bytes, pdm interval from buffer to buffer is ~12ms, which seems enough for a 500Byte bluetooth transmission since 1Mbps PHY means that theoretically I can send 500Bytes->4Kbits in 4ms
My Bluetooth settings were: MIN_CONN_INTERVAL : 8ms, MAX_CONN_INTERVAL : 11ms, aggreed MTU with iPhone 6s was 185 Bytes, Gap data length 251, Gap event length tried different values (3,6,9,12,15,20,30) all with the same results. The maximum resulted throughput was 50% of the PCM samples.
First of all and before I lay out some code, I would like to understand if what I'm trying to do is even possible with nRF52810.