Hi Alexey Borisenko,
1.Get interrupt after all bytes writen to TXDAT already fully sent
From the UART hardware, LPC812 can't support it directly, TXRDYEN is jused to enables an interrupt when the TXDAT register is available to take another character to transmit.
Actually, from the user manual, we just find these UART interrupt:

If you have more bytes to send, and you want to get the notification after all the data is sent, you can enable the TXRDYEN, in the ISR function, you can counter the send data number, when the number is meet your demand, you can set some flag which is defined by yourself, just use the software to realize it.
2. About the TXDIS and TXDISINT
From the user manual descrption:


If the TX buffer already have the data, and you set the TXDIS, then the USART transmitter will be disabled after the TX buffer data is sent. The next data which is not moved to the TX buffer won't be sent. About the INT, I think it will be happen after the TX buffer data is complete, it is the end of the stop bit.
Wish it helps you!
If you still have question about it, please kindly let me know!
Have a great day,
Kerry
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------