Dear Community,
By the below program I can blink on board LED .
int main(void)
{
PSCModuleControl(SOC_PSC_1_REGS, HW_PSC_GPIO, PSC_POWERDOMAIN_ALWAYS_ON,PSC_MDCTL_NEXT_ENABLE);
GPIOBank6Pin13PinMuxSetup();
GPIODirModeSet(SOC_GPIO_0_REGS, 110, GPIO_DIR_OUTPUT);
while(1)
{
GPIOPinWrite(SOC_GPIO_0_REGS, 110, GPIO_PIN_LOW);
Delay(10000);
GPIOPinWrite(SOC_GPIO_0_REGS, 110, GPIO_PIN_HIGH);
Delay(10000);
}
}
1. If I want to blink a LED out of board. What are the pins available ?
2. Can I use J15 GPIIO8-12 or GPIO8-10??
3. When I am using the function for GPIIO8-12.
GPIOBank8Pin16PinMuxSetup();
It is showing error
Description Resource Path Location Type unresolved symbol GPIOBank8Pin16PinMuxSetup, first referenced in ./main.obj gpio_c674x_c6748_lcdkC6748 C/C++ Problem
4. From where I will get the pin numbers, multiplexing pin numbers and bank number ?? For LED blinking these datas are required.
AS LED D4= PIN-110 bANK 6 multuplexing Pin 13.
LED D5 =Pin -109 Bank 6 multuplexing Pin 12
How to get the Pin Bank of LED D6, D7, D8???
With regards,
AS