Part Number: TM4C1294NCPDT
Hello,
When setting up the TM4C129 for EPI, several code examples state the following ...
//
// Configure the GPIO pins for EPI mode. All the EPI pins require 8mA
// drive strength in push-pull operation. This step also gives control of
// pins to the EPI module.
//
GPIOPinTypeEPI(GPIO_PORTA_BASE, EPI_PORTA_PINS);
HWREG(GPIO_PORTA_BASE+GPIO_O_DR8R) |= EPI_PORTA_PINS;
However when using the TI PinMux tool I get the following....
//
// Configure the GPIO Pin Mux for PH0
// for EPI0S0
//
MAP_GPIOPinConfigure(GPIO_PH0_EPI0S0);
GPIOPinTypeEPI(GPIO_PORTH_BASE, GPIO_PIN_0);
Are HWREG and MAP_GPIOPinConfigure performing the same function?
Thank you,
Victor