Other Parts Discussed in Thread: OMAP-L137
I'm trying to toggle GPIO 72 and 92. (72 is pin AXR1[7]/EPWM1B/GP4[7]) 92 is pin AXR1[11]/GP5[11])
I looked at the Code in the EVM and modified it to work with my GPIOs but they are not working.
I call
EVMC6747_GPIO_setDirection( 72, GPIO_OUT );
EVMC6747_GPIO_setDirection( 92, GPIO_OUT );
at the beginning,
then do
{
EVMC6747_GPIO_setOutput( 72, 1)
EVMC6747_waitusec( 25000 );
EVMC6747_GPIO_setOutput( 72, 0);
EVMC6747_waitusec( 25000 );
}
in a loop forever and it does not change. GPIO 92 does the same thing. Using 12-15 works fine on the EVM. What am I missing?
Ringo