Hi
We are using TM4C129ENCPDT microcontroller. And it has ethernet communication which is based on the lwip protocol. We have used PK5, PK4 (pin 62,63) for the Ethernet LEDs.
In the PinoutSet() function we have made the following changes i.e, removed PF0,PF4 initialization and replaced them with PK4,PK5.
//
// this app wants to configure for ethernet LED function
//
// ROM_GPIOPinConfigure(GPIO_PF0_EN0LED0);
// ROM_GPIOPinConfigure(GPIO_PF4_EN0LED1);
ROM_GPIOPinConfigure(GPIO_PK4_EN0LED0);
ROM_GPIOPinConfigure(GPIO_PK5_EN0LED2);
GPIOPinTypeEthernetLED(GPIO_PORTK_BASE, GPIO_PIN_4 | GPIO_PIN_5);
// GPIOPinTypeEthernetLED(GPIO_PORTF_BASE, GPIO_PIN_0 | GPIO_PIN_4);
Now whenever Ethernet connection is established, both LEDs keeps on glowing continuously. There is no blink during Transmission and Reception.
How to configure the LEDs to blink during transmission and reception.
Thank You for your time.