internal behavior of the NRST pin on STM32H563ZIT6 ?
Hello,
I am currently reviewing a hardware design based on the STM32H563ZIT6 and have some questions regarding the internal and external behavior of the NRST pin.
My main question is how the NRST pin operates specifically during an NVIC_SystemReset.
Currently, we are using an external pull-up resistor (connected to 3.3V) on the NRST pin.
According to the Datasheet (DS) and Reference Manual (RM), I confirmed that the NRST pin has an internal weak pull-up (RPU), which is typically 40 kΩ.


Although the Datasheet and Reference manual do not explicitly disclose the internal circuit diagram of the NRST pin used during NVIC_SystemReset, I found information in the community stating that NRST internally has an "Open-drain" structure.

link : https://community.st.com/t5/stm32-mcus/why-my-stm32-doesn-t-start/ta-p/49367
Therefore, I assume the circuit topology is as follows:

- Rpu: STM32 internal weak pull-up (typically 40 kΩ)
- Rnrst: The external pull-up resistor we attached (currently 10 kΩ)
- Vnrst: The voltage input to the STM32
- Rnmos: The channel resistance when the NMOS is turned ON
- Vsystem_reset: The system reset voltage to open the channel during NVIC_SystemReset
My understanding of the operation is as follows:
- When an internal reset occurs: The internal logic turns the NMOS ON → NRST falls to LOW, triggering a reset.
- Condition: It must be below VIL. (We use VDD = 3.3V, so VIL should be around 0.99V).
When the NMOS turns ON, it will appear as a resistor due to its internal resistance (Rnmos).

During the reset drive, the voltage at the NRST pin will be divided as follows:
The equivalent resistance of the parallel pull-up resistors is:
If Rnrst is much smaller than Rpu, Rtotal will effectively be seen as Rnrst (the external pull-up we attached).
If we consider a case where Rnmos is equal to Rtotal, then Vnrst would be 1.65V, which is far above the VIL threshold.
Consequently, NVIC_SystemReset would not function correctly.
Here are my questions:
- Is this circuit topology correct?
- Is there a guaranteed specification for the sink capability (VOL vs IOL) of the NRST pin when it drives low during a SW reset?
- Is there a minimum recommended value (or a prohibited range) for the external pull-up resistor on the NRST pin to ensure proper reset behavior?
I looked through the datasheet, but I could not find the VOL and IOL specifications for the NRST pin
Since we have already attached the external pull-up resistor to the circuit, I want to calculate accurately whether our design might have issues.
We attached a 10 kΩ resistor, and we confirmed that the reset works well during NVIC_SystemReset.
However, I am concerned whether the reset might fail during actual system operation, especially since the community mentions not to drive the voltage externally.
