I configured nrf51 with MIN MAX connection inverval this way
#define MIN_CONN_INTERVAL MSEC_TO_UNITS(100, UNIT_1_25_MS)
#define MAX_CONN_INTERVAL MSEC_TO_UNITS(200, UNIT_1_25_MS)
I have a characteristic which send indications, so to my understanding, this require at least two connections (indication send, and acknowledge). so at least it would take 200ms. when I receive 1200 indications on android, the timing seems logical (with wireshark, I can see from 8 to 10 connections per second. but when I receive 1200 indications from iphone, it took really less time (about 45 seconds) and wireshark shows about 30 connections per second with the nrf51 above configurations. what did I miss here????