2020-12-01 11:46 PM
Is there a way to self reset other than watchdog?
Without external pull-up resistance
I want to keep the GPIO high even if the MCU performs a soft reset.
Is there any way?
Solved! Go to Solution.
2020-12-02 12:26 AM
Call NVIC_SystemReset() for software reset, but no reset will retain the pins settings in GPIO, including pull-ups.
https://community.st.com/s/question/0D53W00000PTFkaSAH/gpio-retention-method
JW
2020-12-02 12:18 AM
Yes, please read the reference manual of the respective device for the section Power Reset, which contains all sources for the internal reset.
Regards
/Peter
2020-12-02 12:26 AM
Call NVIC_SystemReset() for software reset, but no reset will retain the pins settings in GPIO, including pull-ups.
https://community.st.com/s/question/0D53W00000PTFkaSAH/gpio-retention-method
JW