Hi,
I believe the problem is that you need to enable the OBE bit. I tried this out on the tower board using the gpio example in the sample code, and it worked as expected.
IOMUXC->SINGLE.PTA11 = IOMUXC_PTB3_DSE(0x1)| IOMUXC_PTA11_OBE_MASK; //enable GPIO output for PTA11
GPIO0->PDOR=~(PIN(4)); //corresponds with PTA11 and goes to gnd | |
//Delay | |
time_delay_ms(1000); |
GPIO0->PDOR=PIN(4); //corresponds with PTA11 and goes to VDD |
-Anthony
Hi,
I believe the problem is that you need to enable the OBE bit. I tried this out on the tower board using the gpio example in the sample code, and it worked as expected.
IOMUXC->SINGLE.PTA11 = IOMUXC_PTB3_DSE(0x1)| IOMUXC_PTA11_OBE_MASK; //enable GPIO output for PTA11
GPIO0->PDOR=~(PIN(4)); //corresponds with PTA11 and goes to gnd | |
//Delay | |
time_delay_ms(1000); |
GPIO0->PDOR=PIN(4); //corresponds with PTA11 and goes to VDD |
-Anthony