2022-01-17 11:30 PM
I place oscilloscope probe at reset pin of MCU it get low reset continuously time period
I observed RCC- CSR resistor which gives LSIRDY=1 AND IWDGRSTF=1 both are set
How can I make them of and solve this reset problem?
Below attached images of MCU working fine & other get reset continuously resistor value.
Solved! Go to Solution.
2022-01-18 07:40 AM
IWDGRSTF indicates the chip was reset by the IWDG. To avoid that, disable the IWDG in option bytes and don't start it in your program.
Be sure to clear the RCC_CSR flags after you read them to ensure they're valid on next reset.
2022-01-18 07:40 AM
IWDGRSTF indicates the chip was reset by the IWDG. To avoid that, disable the IWDG in option bytes and don't start it in your program.
Be sure to clear the RCC_CSR flags after you read them to ensure they're valid on next reset.
2022-01-19 05:17 AM
solved I reprogrammed my option byte MCU works normally.
THANKS.=)