Enables the transmit path for LPI mode entry. \param ui32Base is the base address of the controller. This function is used to enable the transmit path in LPI mode when there is no more data to be transmitted by the MAC controller. \return None.
| 4809 | // |
| 4810 | //***************************************************************************** |
| 4811 | void |
| 4812 | EMACLPIEnter(uint32_t ui32Base) |
| 4813 | { |
| 4814 | // |
| 4815 | // Parameter sanity check. |
| 4816 | // |
| 4817 | ASSERT(ui32Base == EMAC0_BASE); |
| 4818 | |
| 4819 | HWREG(ui32Base + EMAC_O_LPICTLSTAT) |= EMAC_LPICTLSTAT_LPIEN; |
| 4820 | } |
| 4821 | |
| 4822 | //***************************************************************************** |
| 4823 | // |