I could say as I’m not familiar with the ST code, however I would guess
it is either a mistake or otherwise it is not necessary.
configPRE_SLEEP_PROCESSINIG() and configPOST_SLEEP_PROCESSING() are both
macros, so the parameter passed in is accessed directly inline in the
code, not as a parameter would be in a function call. Therefore, if the
address of xModifiableIdleTime was needed you can put the ‘&’ on the
variable inside the macro, not when you pass the variable into the
macro. From a previous post it seems there are some issues in the
implementation of ST’s tickless idle code.