Hi,
I'm going through project zero.c for the CC26X2 4.40 SDK and I'm confused about the purpose the following code snippet is serving in the file:
// Configure GAP for param update { uint16_t paramUpdateDecision = DEFAULT_PARAM_UPDATE_REQ_DECISION; // Pass all parameter update requests to the app for it to decide GAP_SetParamValue(GAP_PARAM_LINK_UPDATE_DECISION, paramUpdateDecision); }
Specifically, what does it imply from an application standpoint when it says "Pass all parameter update requests to the app for it to decide"? How could this change for my custom application? What considerations need to be kept in mind if this has to change for my purpose?