Tool/software:
Hi,
CCS version : 12.7.1
SDK version : 8.10.01.02
Project : basic_ble
sysconf:
Enabled Peripheral + Central roles.
I connect the device to the Central.
After connecting, I perform Connection Parameter Update.
// Set low speed
gapUpdateLinkParamReq_t params;
params.connectionHandle = gattMsg->connHandle;
params.connTimeout = 3200;
params.intervalMin = 3200;
params.intervalMax = 3200;
params.connLatency = 0;
status = GAP_UpdateLinkParamReq(¶ms);
After execution status = SUCCESS.
1) I monitor the frequency of Connect by power consumption.
1- Connecting the device to Central
2- Periodic connection check (100мс)
If you don't call Connection Parameter Update after connecting, nothing changes.
2) For some reason, after performing Connection Parameter Update, there are no events, both for confirming changes and for canceling them.