Independent watchdog timer makes my MCU unstable
Hello,Here is my source code: void WatchDog(void){ NVIC_InitTypeDef nvicStructure; NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2); nvicStructure.NVIC_IRQChannel = WWDG_IRQn; nvicStructure.NVIC_IRQChannelPreemptionPriority = 1; nvicSt...