Hello, I am having trouble with the STM32L476 IWDG settings. I want to put the IWDG into FREEZE mode, and I set the bits accordingly, but still get resets generated by the IWDG after putting my application in sleep mode.
I tried two methods - my first code is as follows:FLASH_OBProgramInitTypeDef flashUserConfig = {0};flashUserConfig.OptionType = OPTIONBYTE_USER;flashUserConfig.USERType = OB_USER_IWDG_STOP;flashUserConfig.USERConfig = OB_IWDG_STOP_FREEZE;HAL_FLASHEx_...