Question
CubeIDE - debugging - LiveExpression - Function variable
Hello community,
I just started to work with CubeIDE.
CubeIDE offer a functionality to watch the variables during debugging in the LiveExpression-TAB.
My issue is, that I don't know how to watch the variables defined in functions:
Eg: Variable i inside function f , see second picture.
static void f1(void){
int i = 3;
HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin, 1);
HAL_Delay(500);
HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin, 0);
HAL_Delay(500);
}

Thanks in advance for any support you can offer.
