Part Number: TM4C1294NCPDT
Tool/software:
Hello,
I am using TM4C1294 and I need to fast update at portF.
I initialize port using lines below.
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOF);
HWREG(GPIO_PORTF_BASE + GPIO_O_DIR) |= GPIO_PIN_1;
HWREG(GPIO_PORTF_BASE + GPIO_O_DEN) |= GPIO_PIN_1;
When I use following codes output of portF pin 1 changes.
HWREG(GPIO_PORTF_BASE + (GPIO_O_DATA + (GPIO_PIN_1 << 2))) = 0; and
HWREG(GPIO_PORTF_BASE+ (GPIO_O_DATA + (GPIO_PIN_1<< 2))) = GPIO_PIN_1;
However following codes did not work. Could you specify my mistakes?
*((volatile uint32_t *) 0x421C4FF84) = 1;
*((volatile uint32_t *) 0x421C4FF84) = 0;
Best Regards

