Hi
I am using the LPC1518 for a project and I have a problem, that only can be solved with a very short startup time. I need the system to set some GPIO to pull down or just set them low.
I just try with a very simple program, as seen below, which is not fast enough. So if anyone can help me or teach me how this can solve this is would be a big help for me.
int main (void) {
SystemCoreClockUpdate();
Chip_GPIO_Init(LPC_GPIO);
Chip_Clock_EnablePeriphClock(SYSCTL_CLOCK_SWM);
Chip_Clock_EnablePeriphClock(SYSCTL_CLOCK_IOCON);
Chip_IOCON_PinMuxSet(LPC_IOCON, 1, 31, (IOCON_DIGMODE_EN | IOCON_MODE_PULLDOWN) );