Sets the link status of the external PHY. \param ui32Base is the base address of the controller. This function is used to set the link status of the external PHY when the link is established in EEE mode. \return None.
| 4858 | // |
| 4859 | //***************************************************************************** |
| 4860 | void |
| 4861 | EMACLPILinkSet(uint32_t ui32Base) |
| 4862 | { |
| 4863 | // |
| 4864 | // Parameter sanity check. |
| 4865 | // |
| 4866 | ASSERT(ui32Base == EMAC0_BASE); |
| 4867 | |
| 4868 | // |
| 4869 | // Configure the LPI Control registers. |
| 4870 | // |
| 4871 | HWREG(ui32Base + EMAC_O_LPICTLSTAT) |= EMAC_LPICTLSTAT_PLS; |
| 4872 | } |
| 4873 | |
| 4874 | //***************************************************************************** |
| 4875 | // |
no outgoing calls
no test coverage detected