This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TM4C1294NCPDT PK7 pin

Other Parts Discussed in Thread: TM4C1294NCPDT

Hello everyone,

My target board is TM4C1294NCPDT, now i want to config PK7 as Output,but failed。

SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOK);
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOL);
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOM);
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPION);

GPIOPinTypeGPIOOutput(GPIO_PORTK_BASE, 0xFF); // D0 ~ D7
GPIOPinTypeGPIOOutput(GPIO_PORTM_BASE, 0xFF); // D8 ~ D15

GPIOPinWrite(GPIO_PORTK_BASE, 0xFF, 0);
GPIOPinWrite(GPIO_PORTK_BASE, 0xFF, 0xFF);
GPIOPinWrite(GPIO_PORTM_BASE, 0xFF, 0);
GPIOPinWrite(GPIO_PORTM_BASE, 0xFF, 0xFF);

Can you help me?