I'm using the Tiva C Series Launchpad .
I require the SSI0 Base SSI module to communicate with my SIPO device .
The SIPO device at times requires extra clock pulses from PA2 which is defined as GPIO_PA2_SSI0CLK .
Is it possible to define the pin PA2 as ( GPIO_PA2_SSI0CLK) & as a GPIO as well ?
If not ,what is the alternative ?
Here is what I have attempted :-
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOA); GPIOPinTypeGPIOOutput(SCLK_PORT, SCLK_PIN);
&
SysCtlPeripheralEnable(SYSCTL_PERIPH_SSI0);
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOA);
GPIOPinConfigure(GPIO_PA2_SSI0CLK);
Whatever I have done above hasn't worked and I'm not getting the extra clock pulse .