CptTitanic wrote:
So can you pull the pin to the desire level with a weak pull up/down?
You could add assembler code in the reset handler in startup.s to configure the critical pins as outputs and state. This would be the minimal time, and doesn't need to get PLL's running, which normally sucks up some time.
As blue_z indicates this is a pretty sloppy way of doing things, you need a proper power-on-reset circuit, something that can hold things in a safe state until you have control of the system.
Thanks, this is what I was looking for.