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:如何将以太网链路和活动 LED 设置为不同的 GPIO

Guru**** 1788580 points
Other Parts Discussed in Thread: EK-TM4C1294XL
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1403904/tm4c1294ncpdt-how-to-set-ethernet-link-and-activity-led-to-different-gpio

器件型号:TM4C1294NCPDT
Thread 中讨论的其他器件:EK-TM4C1294XL

工具与软件:

您好!

如何将以太网链路和活动指示灯设置为 PF0和 PF0以外的不同 GPIO?

Tivaware 2.2.0.295以及 EK-TM4C1294XL 板上的 NET_S2E 示例。

谢谢!

Keith

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好!

     您可以参阅 C:\ti\TivaWare_C_Series-2.2.0.295\examples\boards\ek-tm4c1294xl\drivers\pinout.c 文件。 查看以下有关以太网 LED 配置的代码片段。

     例如、默认情况下、它将 PF0用于 EN0LED0。 但是、您可以将其从 PF0更改为 PK4。 请参阅数据表。  

    //
    // PF0/PF4 are used for Ethernet LEDs.
    //
    if(bEthernet)
    {
    //
    // this app wants to configure for ethernet LED function.
    //
    MAP_GPIOPinConfigure(GPIO_PF0_EN0LED0);
    MAP_GPIOPinConfigure(GPIO_PF4_EN0LED1);

    MAP_GPIOPinTypeEthernetLED(GPIO_PORTF_BASE, GPIO_PIN_0 | GPIO_PIN_4);
    }
    else
    {