Hi!
I'm using simpleBLEPeripheral project on keyfob and simpleBLECentral on cc2540em.
When I use these settings :
#define DEFAULT_DESIRED_MIN_CONN_INTERVAL 80
#define DEFAULT_DESIRED_MAX_CONN_INTERVAL 80
#define DEFAULT_DESIRED_SLAVE_LATENCY 0
#define DEFAULT_DESIRED_CONN_TIMEOUT 10
#define DEFAULT_ENABLE_UPDATE_REQUEST TRUE
and then I call
GAPRole_SendUpdateParam( 20, 20 ,0, 10, GAPROLE_RESEND_PARAM_UPDATE );
it's ok. But if I call
GAPRole_SendUpdateParam( 800,800 ,0, 10, GAPROLE_RESEND_PARAM_UPDATE ), connection interval does not increase. What am I missing?