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.
My custom board is based on TM4C1294NCPDT design. Now I was reading this document from TI spmt306-TM4C129EKCPDT Microcontroller-Technical Brief.pdf
it is mentioned on page- 82, "The internal Ethernet PHY should not be enabled when RBIAS is not connected." So the internal Ethernet PHY for a custom board needs to be enabled when RBIAS is connected...I would like to know how to enable the internal PHY for custom board and what other changes are needed for custom board to work for Ethernet applications?
Thanks.
In the RTOS examples, does BIOS_start() configure the Ethernet PHY?
All the RTOS example do something like:
Board_initGeneral(); Board_initGPIO(); Board_initEMAC(); BIOS_start();
The 3 init functions don't seems to be setting register values or making TivaWare function calls for Ethernet PHY.