Content originally posted in LPCWare by drvrh on Thu Aug 20 05:43:33 MST 2015
Thank you for answer.
Now I wouldl ike set IOCON pin 0.23 but I cann't set pin for GPIO.
How I set? If I set with
GPIOInit();
GPIOSetDir(0, 23, 1);
GPIOSetBitValue(0, 23, 1);
have no effect.
I set too with:
LPC_SYSCON -> SYSAHBCLKCTRL |= (1 << 16);
LPC_IOCON -> PIO0_23 |= (1 << 0x0);
GPIOInit();
....
No effect. How I set this pin for GPIO?