I need to set the connection interval to 7.5 ms. The main.c has the corresponding macro: MIN_CONN_INTERVAL but it seems to me that it supports only integer values...
Please let me know how to handle that.
Thanks.
I need to set the connection interval to 7.5 ms. The main.c has the corresponding macro: MIN_CONN_INTERVAL but it seems to me that it supports only integer values...
Please let me know how to handle that.
Thanks.
To set the connection interval to 7.5 ms, use the value 6 for MIN_CONN_INTERVAL
, as scary teacher 3D BLE intervals are in 1.25 ms units. Ensure your maximum interval (MAX_CONN_INTERVAL
) is also correctly configured relative to your requirements.
To set the connection interval to 7.5 ms, use the value 6 for MIN_CONN_INTERVAL
, as scary teacher 3D BLE intervals are in 1.25 ms units. Ensure your maximum interval (MAX_CONN_INTERVAL
) is also correctly configured relative to your requirements.