In document spnu563a page 1886, the TXINTSTATRAW flag is described (in EMAC/MDIO peripheral) as a way to get the interrupt status without actually handling the interrupt. I am not sure how this is supposed to work because unless the interrupt is at least ack'd, it will stay asserted and the ack is usually done in a handler. So basically I have two questions:
1. What is the intended use case for this (and other similar flags)?
2. Is there a way to poll for the completion of a EMAC transmit without resorting to interrupts? In the real time application that I have, timing jitter (associated with interrupts) is unacceptable, whereas polling can be done from an idle task without affecting any real time guarantees.