Hi @alfredocyberhom
The problem arises because the boot mode selection (via PIO0_5 pin) takes precedence during reset, which causes the processor to jump to the ISP if the pin is low.
To work around this issue, you can prevent the processor from entering the ISP mode by ensuring the state of PIO0_5 is high during reset. Since PIO0_5 is being used as a UART4 receiver (FC4_RXD), you have a couple of options:
You can add an external pull-up resistor (e.g., 10kΩ to 3.3V) to the PIO0_5 pin. This will ensure that PIO0_5 is high during reset, preventing the processor from entering ISP mode.
BR
Hang